代码拉取完成,页面将自动刷新
<?php
/**
* WeEngine System
*
* (c) We7Team 2019 <https://www.w7.cc>
*
* This is not a free software
* Using it under the license terms
* visited https://www.w7.cc for more details
*/
include_once 'vendor/autoload.php';
const SOFT_NAME = 'WeEngine Api System';
$finder = PhpCsFixer\Finder::create()
->files()
->name('*.php')
->exclude('vendor')
->in(__DIR__)
->ignoreDotFiles(true)
->ignoreVCS(true);
$fixers = [
'@PSR2' => true,
'single_quote' => true, //简单字符串应该使用单引号代替双引号;
'no_unused_imports' => true, //删除没用到的use
'no_singleline_whitespace_before_semicolons' => true, //禁止只有单行空格和分号的写法;
'no_empty_statement' => true, //多余的分号
'no_extra_blank_lines' => true, //多余空白行
'no_blank_lines_after_phpdoc' => true, //注释和代码中间不能有空行
'no_empty_phpdoc' => true, //禁止空注释
'phpdoc_indent' => true, //注释和代码的缩进相同
'no_blank_lines_after_class_opening' => true, //类开始标签后不应该有空白行;
'include' => true, //include 和文件路径之间需要有一个空格,文件路径不需要用括号括起来;
'no_trailing_comma_in_list_call' => true, //删除 list 语句中多余的逗号;
'no_leading_namespace_whitespace' => true, //命名空间前面不应该有空格;
'standardize_not_equals' => true, //使用 <> 代替 !=;
'blank_line_after_opening_tag' => true, //PHP开始标记后换行
'indentation_type' => true,
'concat_space' => [
'spacing' => 'one',
],
'space_after_semicolon' => [
'remove_in_empty_for_expressions' => true,
],
'header_comment' => [
'comment_type' => 'PHPDoc',
'header' => SOFT_NAME . " \r\n\r\n(c) We7Team 2019 <https://www.w7.cc> \r\n\r\nThis is not a free software \r\nUsing it under the license terms\r\nvisited https://www.w7.cc for more details",
],
'braces' => ['position_after_functions_and_oop_constructs' => 'same']
];
$config = new \PhpCsFixer\Config();
return $config
->setRules($fixers)
->setFinder($finder)
->setIndent("\t");
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。