diff --git a/tests/PHPStan/Rules/Properties/data/bug-4680.php b/tests/PHPStan/Rules/Properties/data/bug-4680.php index dd43bf6179..b353ded26e 100644 --- a/tests/PHPStan/Rules/Properties/data/bug-4680.php +++ b/tests/PHPStan/Rules/Properties/data/bug-4680.php @@ -10,7 +10,7 @@ class HelloWorld /** @var \SplObjectStorage */ private $collection2; - public function __construct(): void + public function __construct() { $this->collection1 = new \SplObjectStorage(); $this->collection2 = new \SplObjectStorage();