Skip to content

Commit 3c41412

Browse files
committed
fix: property typehint syntax on PHP 7.3
1 parent 74220d3 commit 3c41412

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/DataProviders/ExampleClass/WithManyMagicPropertiesClass.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ class WithManyMagicPropertiesClass implements IStrictPropertiesContainer, IMagic
4040
{
4141
use PropertiesHandler;
4242

43-
private array $data = [];
43+
/**
44+
* @var array
45+
*/
46+
private $data = [];
4447

4548
public function __construct()
4649
{

0 commit comments

Comments
 (0)