2014-07-09 101 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 –