spryker/code-sniffer

7.4+ compatibility check

Closed this issue · 1 comments

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;