Skip to content
Snippets Groups Projects
Unverified Commit fcbab3b9 authored by Klaus Purer's avatar Klaus Purer Committed by GitHub
Browse files

feat(EmptyPHPStatement): Add sniff for empty PHP statements, same as Drupal core does (#3496958)

parent 36ca8bac
No related branches found
No related tags found
No related merge requests found
......@@ -47,16 +47,18 @@
<exclude-pattern>*.tpl.php</exclude-pattern>
</rule>
<!-- Generic sniffs -->
<rule ref="Generic.CodeAnalysis.EmptyPHPStatement"/>
<rule ref="Generic.CodeAnalysis.UselessOverridingMethod"/>
<rule ref="Generic.Files.ByteOrderMark"/>
<rule ref="Generic.Files.LineEndings"/>
<rule ref="Generic.Formatting.DisallowMultipleStatements"/>
<rule ref="Generic.Formatting.SpaceAfterCast"/>
<rule ref="Generic.Functions.FunctionCallArgumentSpacing"/>
<!-- Already covered by Drupal.WhiteSpace.Comma.NoSpace. -->
<rule ref="Generic.Functions.FunctionCallArgumentSpacing.NoSpaceAfterComma">
<severity>0</severity>
</rule>
<rule ref="Generic.NamingConventions.ConstructorName"/>
<rule ref="Generic.NamingConventions.UpperCaseConstantName"/>
<rule ref="Generic.PHP.DeprecatedFunctions"/>
......@@ -65,13 +67,6 @@
<rule ref="Generic.PHP.UpperCaseConstant"/>
<rule ref="Generic.WhiteSpace.DisallowTabIndent"/>
<!-- Use Unix newlines -->
<rule ref="Generic.Files.LineEndings">
<properties>
<property name="eolChar" value="\n"/>
</properties>
</rule>
<rule ref="MySource.Debug.DebugCode"/>
<rule ref="PEAR.Files.IncludingFile"/>
<!-- Disable some error messages that we do not want. -->
......
......@@ -434,6 +434,7 @@ class BadUnitTest extends CoderSniffUnitTest
809 => 1,
823 => 1,
824 => 1,
836 => 1,
];
}//end switch
......
......@@ -884,7 +884,6 @@ function test28() {
// Multiple statements on one line are not allowed.
echo 'Hi!';
;
/**
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment