Skip to content

Commit

Permalink
Fix for PHP 7
Browse files Browse the repository at this point in the history
  • Loading branch information
noplanman committed May 27, 2023
1 parent 289fd17 commit 8484c89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Entities/Entity.php
Expand Up @@ -57,7 +57,7 @@ public function __construct(array $data, string $bot_username = '')
* @param mixed $value
* @return void
*/
public function __set(string $name, mixed $value): void
public function __set(string $name, $value): void
{
$this->fields[$name] = $value;
}
Expand Down

0 comments on commit 8484c89

Please sign in to comment.