PHP code example of suin / symplify-cs-fixer
1. Go to this page and download the library: Download suin/symplify-cs-fixer library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
suin / symplify-cs-fixer example snippets
declare(strict_types=1);
return PhpCsFixer\Config::create()
->registerCustomFixers(new SymplifyCsFixer\SymplifyCsFixers())
->setRules(
[
SymplifyCsFixer\ArrayPropertyDefaultValueFixer::NAME => true,
SymplifyCsFixer\BlankLineAfterStrictTypesFixer::NAME => true,
SymplifyCsFixer\BlockPropertyCommentFixer::NAME => true,
SymplifyCsFixer\ClassStringToClassConstantFixer::NAME => true,
SymplifyCsFixer\FinalInterfaceFixer::NAME => true,
SymplifyCsFixer\LineLengthFixer::NAME => [
'line_length' => 80,
'break_long_lines' => true,
'inline_short_lines' => true,
],
SymplifyCsFixer\MethodOrderByTypeFixer::NAME => true,
SymplifyCsFixer\ParamReturnAndVarTagMalformsFixer::NAME => true,
SymplifyCsFixer\PrivateMethodOrderByUseFixer::NAME => true,
SymplifyCsFixer\PropertyNameMatchingTypeFixer::NAME => true,
SymplifyCsFixer\PropertyOrderByComplexityFixer::NAME => true,
SymplifyCsFixer\RemoveEmptyDocBlockFixer::NAME => true,
SymplifyCsFixer\RemoveEndOfFunctionCommentFixer::NAME => true,
SymplifyCsFixer\RemoveSuperfluousDocBlockWhitespaceFixer::NAME => true,
SymplifyCsFixer\RemoveUselessDocBlockFixer::NAME => true,
SymplifyCsFixer\RequireFollowedByAbsolutePathFixer::NAME => true,
SymplifyCsFixer\StandaloneLineInMultilineArrayFixer::NAME => true,
]
)
// ...
;
vendor/bin/php-cs-fixer fix --dry-run --diff --diff-format=udiff --verbose