astrXbian/www/multitube/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/nullable_types.test

11 lines
163 B
Plaintext
Raw Normal View History

2021-03-20 01:33:02 +01:00
Nullable types
-----
<?php
function test(?Foo $bar, ?string $foo, ?\Xyz $zyx) : ?Baz
{
}
-----
!!php7
function test(?Foo $bar, ?string $foo, ?\Xyz $zyx) : ?Baz
{
}