Arrow function ----- $a; fn($x = 42) => $x; fn(&$x) => $x; fn&($x) => $x; static fn($x, ...$rest) => $rest; fn(): int => $x; ----- !!php7 fn($a) => $a; fn($x = 42) => $x; fn(&$x) => $x; fn&($x) => $x; static fn($x, ...$rest) => $rest; fn(): int => $x;