php-cs-fixer fix /path/to/project --level=psr0 php-cs-fixer fix /path/to/project --level=psr1 php-cs-fixer fix /path/to/project --level=psr2 php-cs-fixer fix /path/to/project --level=symfony 默认情况下执行的是 PSR-2 的所有选项以及一些附加选项(主要是 symfony 相关的)。还有一些属...
Namespace/Package Name:SymfonyCSFixer Class/Type:PhpdocParamsAlignmentFixer 每个示例代码都附有代码来源和完整的源代码,希望对您的程序开发有帮助。 示例1 publicfunctiontestFixOnlyReturn(){$fixer=newPhpdocParamsAlignmentFixer();$file=newSplFileInfo(__FILE__);$expected=<<<'EOF'*@returnFoodescription foo ...
Namespace/Package Name:SymfonyCSFixer Class/Type:Psr0Fixer 每个示例代码都附有代码来源和完整的源代码,希望对您的程序开发有帮助。 示例1 publicfunctiontestHandlePartialNamespaces(){$fixer=newPsr0Fixer();$config=newConfig();$config->setDir(__DIR__.'/../../');$fixer->setConfig($config);$file...
http://cs.symfony.com Overview Repositories10 Projects Packages People4 More PinnedLoading PHP-CS-FixerPHP-CS-FixerPublic A tool to automatically fix PHP Coding Standards issues PHP13k1.6k shimshimPublic Shim version of PHP CS Fixer PHP262 ...
<?php$header= <<<'EOF'EOF;$finder= PhpCsFixer\Finder::create()->exclude('tests/Fixtures')//排除文件->in(__DIR__);returnPhpCsFixer\Config::create()->setRiskyAllowed(true)->setRules(['@PSR2' =>true,//遵循PSR2 //'@Symfony' => false, ...
(c) Fabien Potencier <fabien@symfony.com> This source file is subject to the MIT license that is bundled with this source code in the file LICENSE. EOF; Symfony\CS\Fixer\Contrib\HeaderCommentFixer::setHeader($header);returnSymfony\CS\Config\Config::create()// use default SYMFONY_LEVEL and...
小李世界 Doge 先锋 @ dogeow.com
可以运行以下命令来安装php-cs-fixer wget https://cs.symfony.com/download/php-cs-fixer-v2.phar-O php-cs-fixer 或指定版本 wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.16.1/php-cs-fixer.phar-O php-cs-fixer ...
php-cs-fixer - PHP 编码格式化工具 php-cs-fixer 是个代码格式化工具,格式化的标准是 PSR-1、PSR-2 以及一些 symfony 的标准。这个工具也和 symfony、twig 等优秀的 PHP 库出自同门。 安装与更新 需要使用 PHP 5.3.6 以上的版本。 你可以直接下载封装好的 phar 包:php-cs-fixer.phar; ...
PHP Coding Standards Fixer The PHP Coding Standards Fixer (PHP CS Fixer) tool fixes your code to follow standards; whether you want to follow PHP coding standards as defined in the PSR-1, PSR-2, etc., or other community driven ones like the Symfony one. You can also define your (team...