- Use PHP-CodeSniffer para verificar se seu código está em conformidade com PSR-1 e PSR-2:
phpcs --standard=PSR1 /path/to/file/FileName.php
phpcs --standard=PSR2 /path/to/file/FileName.php
- Use o PHP Coding Standards Fixer para corrigir “automaticamente” seu código para PSR-1 e PSR-2:
php-cs-fixer fix /path/to/file/FileName.php