Perform code fix and review
Fixer | Review | Link |
---|---|---|
✔ | ✔ | Php open tags |
✔ | ✔ | Php line before class end |
✔ | Php file start | |
✔ | Php closing tags | |
✔ | Php return type format | |
✔ | ✔ | Php redundant Null property value |
✔ | ✔ | Spaces in empty lines |
✔ | ✔ | Line ending |
✔ | Composer |
Via Composer
composer require funivan/cs:dev-master
# run review tool
./vendor/bin/cs.php review;
# run fixer tool
./vendor/bin/cs.php fix;
Create custom configuration file. For example cs-fix.php
<?php
# file cs-fix.php
require __DIR__ . '/vendor/autoload.php';
use Funivan\Cs\Configuration\CsConfiguration;
$configuration = CsConfiguration::createFixerConfiguration();
// You can set custom file finder
// $configuration->setFileFinder(new MyProjectCustomFileFinder());
// You can add custom tools
// $configuration->setTool(new MyProjectCustomCheckTool());
Then run fixer
./vendor/bin/cs.php fix --configuration=cs-fixer.php -vvv
./vendor/bin/phpunit
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.