Skip to content

Commit

Permalink
fix: property typehint syntax on PHP 7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nelson6e65 committed Aug 7, 2021
1 parent 74220d3 commit 3c41412
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ class WithManyMagicPropertiesClass implements IStrictPropertiesContainer, IMagic
{
use PropertiesHandler;

private array $data = [];
/**
* @var array
*/
private $data = [];

public function __construct()
{
Expand Down

0 comments on commit 3c41412

Please sign in to comment.