We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
viber-bot-php/src/Api/Event/Failed.php
Line 44 in 176dc93
According to Viber's documentation page, the property for failed event description should be desc and not dsc.
desc
dsc
Respectivelly, the method should return $this->desc and the getter's name should match the property name:
$this->desc
public function getDesc() { return $this->desc; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
viber-bot-php/src/Api/Event/Failed.php
Line 44 in 176dc93
According to Viber's documentation page, the property for failed event description should be
desc
and notdsc
.Respectivelly, the method should return
$this->desc
and the getter's name should match the property name:public function getDesc() { return $this->desc; }
The text was updated successfully, but these errors were encountered: