1Union types
2-----
3<?php
4
5class Test {
6    public A|iterable|null $prop;
7}
8
9function test(A|B $a): int|false {}
10-----
11class Test
12{
13    public A|iterable|null $prop;
14}
15function test(A|B $a): int|false
16{
17}