The PHPDoc for the RestClient class had some typos in its @property declarations, with several missing an s at the end and one using the wrong capitalization. For example, messages was incorrectly listed as message, which was quite confusing for me when using my IDE's auto-completion and comparing against this project's official documentation.
The PHPDoc for the
RestClient
class had some typos in its@property
declarations, with several missing ans
at the end and one using the wrong capitalization. For example,messages
was incorrectly listed asmessage
, which was quite confusing for me when using my IDE's auto-completion and comparing against this project's official documentation.This PR fixes those issues.