加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.php_cs.dist 543 Bytes
一键复制 编辑 原始数据 按行查看 历史
Wellming Li 提交于 2017-04-19 20:06 . fix cs
<?php
$finder = Symfony\Component\Finder\Finder::create()
->files()
->name('*.php')
->ignoreDotFiles(true)
->ignoreVCS(true)
->exclude('vendor')
->exclude('bin')
->in(__DIR__.'/src/AppBundle')
->in(__DIR__.'/src/Biz')
->in(__DIR__.'/bootstrap')
->in(__DIR__.'/migrations')
->in(__DIR__.'/tests')
;
return PhpCsFixer\Config::create()
->setCacheFile(__DIR__.'/.php_cs.cache')
->setRules(array(
'@Symfony' => true,
'phpdoc_summary' => false,
))
->setFinder($finder)
;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化