2017-11-02 18:21:09 +01:00
|
|
|
checkers:
|
|
|
|
# remove unused "use" statements
|
|
|
|
- PhpCsFixer\Fixer\Import\NoUnusedImportsFixer
|
2017-11-05 20:36:55 +01:00
|
|
|
|
2017-11-02 18:21:09 +01:00
|
|
|
# order use statements A-Z
|
|
|
|
- PhpCsFixer\Fixer\Import\OrderedImportsFixer
|
2017-11-05 20:36:55 +01:00
|
|
|
|
2017-11-09 03:33:17 +01:00
|
|
|
# remove leading slash ("\") at imports
|
|
|
|
- PhpCsFixer\Fixer\Import\NoLeadingImportSlashFixer
|
|
|
|
|
2017-11-02 18:21:09 +01:00
|
|
|
# remove extra spaces from DocBlocks
|
|
|
|
- PhpCsFixer\Fixer\Comment\NoTrailingWhitespaceInCommentFixer
|
2017-11-05 20:36:55 +01:00
|
|
|
|
2017-11-05 17:35:51 +01:00
|
|
|
# clean empty doc blocks, e.g. after annotation removal
|
|
|
|
- PhpCsFixer\Fixer\Phpdoc\NoEmptyPhpdocFixer
|