Closed dereuromark closed 3 years ago
There are 3 important RFCs that was introduced in PHP 7.4:
We should check that those don't break anything.
Specifically, the following issues seem to be not covered
$fn1 = fn($x)=>$x + $y;
should be
$fn1 = fn ($x) => $x + $y;
There are 3 important RFCs that was introduced in PHP 7.4:
We should check that those don't break anything.