1Nullable types
2-----
3<?php
4function test(?Foo $bar, ?string $foo, ?\Xyz $zyx) : ?Baz
5{
6}
7-----
8function test(?Foo $bar, ?string $foo, ?\Xyz $zyx): ?Baz
9{
10}