Okay, I know php-cs-fixer
allows following levels of fixes for coding standards:
php php-cs-fixer.phar fix /path/to/project --level=psr0
php php-cs-fixer.phar fix /path/to/project --level=psr1
php php-cs-fixer.phar fix /path/to/project --level=psr2
php php-cs-fixer.phar fix /path/to/project --level=symfony
I know that psr0
, psr1
, psr2
levels maintain specified coding standards.
But I want to know what --level=symfony
offers and how does that coding standard differ from psr2
.
Also if we don't the provide the --level
option at all. Does is assume --level=psr2
by default?