Skip to content

Commit

Permalink
added test case for typed properties without default value, issue #32465
Browse files Browse the repository at this point in the history
  • Loading branch information
tvandervorm committed Jul 14, 2019
1 parent 5e98b8f commit 5d528cf
Showing 1 changed file with 8 additions and 0 deletions.
Expand Up @@ -134,6 +134,14 @@ public function provideHashedSignature()
yield [1, 13, 'protected function prot($a = [123]) {}'];
yield [0, 14, '/** priv docblock */'];
yield [0, 15, ''];

if (PHP_VERSION_ID >= 70400) {
// PHP7.4 typed properties without default value are
// undefined, make sure this doesn't throw an error
yield [1, 5, 'public array $pub;'];
yield [0, 7, 'protected int $prot;'];
yield [0, 9, 'private string $priv;'];
}
}

public function testEventSubscriber()
Expand Down

0 comments on commit 5d528cf

Please sign in to comment.