Security update for Core, with self-updated composer
[yaffs-website] / vendor / nikic / php-parser / test / code / prettyPrinter / stmt / nullable_types.test
1 Nullable types
2 -----
3 <?php
4 function test(?Foo $bar, ?string $foo, ?\Xyz $zyx) : ?Baz
5 {
6 }
7 -----
8 !!php7
9 function test(?Foo $bar, ?string $foo, ?\Xyz $zyx) : ?Baz
10 {
11 }