astrXbian/www/multitube/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/nullable_types.test
2021-03-20 01:33:02 +01:00

11 lines
163 B
Plaintext

Nullable types
-----
<?php
function test(?Foo $bar, ?string $foo, ?\Xyz $zyx) : ?Baz
{
}
-----
!!php7
function test(?Foo $bar, ?string $foo, ?\Xyz $zyx) : ?Baz
{
}