PhpStorm
 
Get PhpStorm
You are viewing the documentation for an earlier version of PhpStorm.

Code Inspection: Closure can be converted to arrow function

Last modified: 16 May 2022

Reports the anonymous functions that can be transformed to short arrow functions. Support for short arrow functions is available since PHP 7.4.

See PHP RFC: Arrow Functions 2.0 (php.net) for details.

In the following example, the callback anonymous function inside array_map() is written in two forms: regular and arrow.