115 Star 366 Fork 164

EduSoho / EduSoho

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.php_cs.dist 576 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhongyunchang 提交于 2021-08-05 16:22 . feat: #21083 完善设置项注解
<?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([
'@Symfony' => true,
'phpdoc_summary' => false,
'phpdoc_to_comment' => false,
])
->setFinder($finder)
;
PHP
1
https://gitee.com/EduSoho/EduSoho.git
git@gitee.com:EduSoho/EduSoho.git
EduSoho
EduSoho
EduSoho
master

搜索帮助