| Current Path : /proc/self/cwd/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/ |
| Current File : //proc/self/cwd/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/nullable_types.test |
Nullable types
-----
<?php
function test(?Foo $bar, ?string $foo, ?\Xyz $zyx) : ?Baz
{
}
-----
!!php7
function test(?Foo $bar, ?string $foo, ?\Xyz $zyx) : ?Baz
{
}