2014-07-09 103 views
2

我遇到了麻烦,这些规则的工作:PHP代码嗅探规则

后没有空格函数名称:

// good 
public function cities() 

// bad 
public function cities() 

确保空间等于之间:

// good 
$test = 'test'; 

// bad 
$test ='test'; 
$test= 'test'; 

必须有空间在参数逗号后:

// good 
function ($arg1, $arg2) 

// bad 
function ($arg1,$arg2) 
function ($arg1 ,$arg2) 

我的规则:

<?xml version="1.0"?> 
<ruleset name="PSR2"> 
<description>The PSR-2 coding standard.</description> 

<!-- PHP code MUST use the long <?php ?> tags or the short-echo <?= ?> tags; it MUST NOT use the other tag variations. --> 
<rule ref="Generic.PHP.DisallowShortOpenTag.EchoFound"> 
<severity>0</severity> 
</rule> 

<!-- PHP code MUST use only UTF-8 without BOM. --> 
<rule ref="Generic.Files.ByteOrderMark"/> 

<!-- Class names MUST be declared in StudlyCaps. --> 
<rule ref="Squiz.Classes.ValidClassName"/> 

<!-- Class constants MUST be declared in all upper case with underscore separators. --> 
<rule ref="Generic.NamingConventions.UpperCaseConstantName"/> 

<!-- Method names MUST be declared in camelCase(). --> 
<rule ref="Generic.NamingConventions.CamelCapsFunctionName"/> 

<!-- There MUST NOT be trailing whitespace at the end of non-blank lines. --> 
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace"> 

</rule> 
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace.StartFile"> 
<severity>0</severity> 
</rule> 
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace.EndFile"> 
<severity>0</severity> 
</rule> 
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace.EmptyLines"> 
<severity>0</severity> 
</rule> 

<!-- There MUST NOT be more than one statement per line. --> 
<rule ref="Generic.Formatting.DisallowMultipleStatements"/> 

<!-- Code MUST use an indent of 4 spaces, and MUST NOT use tabs for indenting. --> 
<rule ref="Generic.WhiteSpace.ScopeIndent"> 
<properties> 
<property name="ignoreIndentationTokens" type="array" value="T_COMMENT,T_DOC_COMMENT"/> 
</properties> 
</rule> 
<rule ref="Generic.WhiteSpace.DisallowTabIndent"/> 

<!-- PHP keywords MUST be in lower case. --> 
<rule ref="Generic.PHP.LowerCaseKeyword"/> 

<!-- The PHP constants true, false, and null MUST be in lower case. --> 
<rule ref="Generic.PHP.LowerCaseConstant"/> 

<!-- Method names SHOULD NOT be prefixed with a single underscore to indicate protected or private visibility. --> 
<rule ref="PSR2.Methods.MethodDeclaration"/> 

<!-- When present, there MUST be one blank line after the namespace declaration. --> 
<rule ref="PSR2.Namespaces.NamespaceDeclaration"/> 

<!-- When present, all use declarations MUST go after the namespace declaration. 
    There MUST be one use keyword per declaration. 
    There MUST be one blank line after the use block. --> 
<rule ref="PSR2.Namespaces.UseDeclaration"/> 

<!-- The extends and implements keywords MUST be declared on the same line as the class name. 
    The opening brace for the class go MUST go on its own line; the closing brace for the class MUST go on the next line after the body. 
    Lists of implements MAY be split across multiple lines, where each subsequent line is indented once. When doing so, the first item in the list MUST be on the next line, and there MUST be only one interface per line. --> 
<rule ref="PSR2.Classes.ClassDeclaration"/> 

<!-- Visibility MUST be declared on all properties. 
    The var keyword MUST NOT be used to declare a property. 
    There MUST NOT be more than one property declared per statement. 
    Property names SHOULD NOT be prefixed with a single underscore to indicate protected or private visibility. --> 
<rule ref="PSR2.Classes.PropertyDeclaration"/> 

<!-- Visibility MUST be declared on all methods. --> 
<rule ref="Squiz.Scope.MethodScope"/> 
<rule ref="Squiz.WhiteSpace.ScopeKeywordSpacing"/> 

<!-- Method names MUST NOT be declared with a space after the method name. The opening brace MUST go on its own line, and the closing brace MUST go on the next line following the body. There MUST NOT be a space after the opening parenthesis, and there MUST NOT be a space before the closing parenthesis. --> 
<rule ref="Squiz.Functions.FunctionDeclaration"/> 
<rule ref="Squiz.Functions.LowercaseFunctionKeywords"/> 

<!-- In the argument list, there MUST NOT be a space before each comma, and there MUST be one space after each comma. --> 
<rule ref="Squiz.Functions.FunctionDeclarationArgumentSpacing"> 
<properties> 
<property name="equalsSpacing" value="1"/> 
</properties> 
</rule> 
<rule ref="Squiz.Functions.FunctionDeclarationArgumentSpacing.SpacingAfterHint"> 
<severity>0</severity> 
</rule> 

<!-- Method arguments with default values MUST go at the end of the argument list. --> 
<rule ref="PEAR.Functions.ValidDefaultValue"/> 

<!-- Argument lists MAY be split across multiple lines, where each subsequent line is indented once. When doing so, the first item in the list MUST be on the next line, and there MUST be only one argument per line. When the argument list is split across multiple lines, the closing parenthesis and opening brace MUST be placed together on their own line with one space between them. --> 
<rule ref="Squiz.Functions.MultiLineFunctionDeclaration"/> 

<!-- When making a method or function call, there MUST NOT be a space between the method or function name and the opening parenthesis, there MUST NOT be a space after the opening parenthesis, and there MUST NOT be a space before the closing parenthesis. In the argument list, there MUST NOT be a space before each comma, and there MUST be one space after each comma. 
Argument lists MAY be split across multiple lines, where each subsequent line is indented once. When doing so, the first item in the list MUST be on the next line, and there MUST be only one argument per line. --> 
<rule ref="Generic.Functions.FunctionCallArgumentSpacing"/> 
<rule ref="PSR2.Methods.FunctionCallSignature.SpaceAfterCloseBracket"> 
<severity>0</severity> 
</rule> 

<!-- The general style rules for control structures are as follows: 
There MUST be one space after the control structure keyword 
There MUST NOT be a space after the opening parenthesis 
There MUST NOT be a space before the closing parenthesis 
There MUST be one space between the closing parenthesis and the opening brace 
The structure body MUST be indented once 
The closing brace MUST be on the next line after the body --> 
<rule ref="Squiz.ControlStructures.ControlSignature"> 
<properties> 
<property name="ignoreComments" value="true"/> 
</properties> 
</rule> 
<rule ref="Squiz.WhiteSpace.ScopeClosingBrace"/> 
<rule ref="Squiz.ControlStructures.ForEachLoopDeclaration"/> 
<rule ref="Squiz.ControlStructures.ForLoopDeclaration"/> 
<rule ref="Squiz.ControlStructures.LowercaseDeclaration"/> 
<!-- checked in ControlStructures/ControlStructureSpacingSniff --> 

<!-- The body of each structure MUST be enclosed by braces. This standardizes how the structures look, and reduces the likelihood of introducing errors as new lines get added to the body. --> 
<rule ref="Generic.ControlStructures.InlineControlStructure"/> 

</ruleset> 

回答

3

使用你的标准,我得到的第一个错误和第三规则就好了,但不是第二。

示例代码:

<?php 
// good 
public function cities() 

// bad 
public function cities() 

// good 
$test = 'test'; 

// bad 
$test ='test'; 
$test= 'test'; 

// good 
function ($arg1, $arg2) 

// bad 
function ($arg1,$arg2) 
function ($arg1 ,$arg2) 

试运行:

$ phpcs temp.php --standard=mystandard.xml 

FILE: temp.php 
-------------------------------------------------------------------------------- 
FOUND 4 ERROR(S) AFFECTING 3 LINE(S) 
-------------------------------------------------------------------------------- 
    6 | ERROR | Expected "function abc(...)"; found "function abc (...)" 
19 | ERROR | Expected 1 space between comma and argument "$arg2"; 0 found 
20 | ERROR | Expected 0 spaces between argument "$arg1" and comma; 1 found 
20 | ERROR | Expected 1 space between comma and argument "$arg2"; 0 found 
-------------------------------------------------------------------------------- 

Time: 23 ms, Memory: 2.75Mb 

为了弥补第二种情况下,在您的规则集以下额外嗤之以鼻:

<rule ref="Squiz.WhiteSpace.OperatorSpacing"/> 

然后你会得到:

FILE: temp.php 
-------------------------------------------------------------------------------- 
FOUND 6 ERROR(S) AFFECTING 5 LINE(S) 
-------------------------------------------------------------------------------- 
    6 | ERROR | Expected "function abc(...)"; found "function abc (...)" 
12 | ERROR | Expected 1 space after "="; 0 found 
13 | ERROR | Expected 1 space before "="; 0 found 
19 | ERROR | Expected 1 space between comma and argument "$arg2"; 0 found 
20 | ERROR | Expected 0 spaces between argument "$arg1" and comma; 1 found 
20 | ERROR | Expected 1 space between comma and argument "$arg2"; 0 found 
-------------------------------------------------------------------------------- 

Time: 23 ms, Memory: 2.75Mb 
+0

我只是没有选择那些。你使用的是什么版本的phpcs? – Rob

+0

你是否也可以发布你的'temp.php'和'mystandard.xml'文件来进行完整性检查。 – Rob

+1

对不起,我安装了git repo的最新代码。你会受到这个bug的影响:http://pear.php.net/bugs/bug.php?id=20310这会阻止第6行的错误出现,尽管其余的工作对我来说很好。该修补程序将在下一个版本中发布。以下是我使用的测试文件:https://gist.github.com/gsherwood/f46fcb3b5481821b0fa9 –