Is it required to keep space after type cast by Symfony coding standards? Is it required to keep space after type cast by Symfony coding standards? symfony symfony

Is it required to keep space after type cast by Symfony coding standards?


Yes, it is:

enter image description here

How to Apply It?

  • In CodeSniffer, you're looking for PHP_CodeSniffer\Standards\Generic\Sniffs\Formatting\SpaceAfterCastSniff

  • In PHP-CS-Fixer, it would be PhpCsFixer\Fixer\CastNotation\CastSpacesFixer

enter image description here

Tool used in here is EasyCodingStandard - you can read intro post about it.