Commit bd07a8f6 authored by Côme Bernigaud's avatar Côme Bernigaud Committed by Benoit Mortier
Browse files

Fixes: #2417 CodeSniffer should forbid PHP4 constructor names

Showing with 4 additions and 16 deletions
+4 -16
......@@ -2,19 +2,6 @@
<ruleset name="FDStandard">
<description>Fusion Directory coding standard.</description>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="80"/>
<property name="absoluteLineLimit" value="120"/>
</properties>
</rule>
<rule ref="Generic.Files.LineLength.MaxExceeded">
<severity>4</severity>
</rule>
<rule ref="Generic.Files.LineLength.TooLong">
<severity>3</severity>
</rule>
<rule ref="Generic.Functions.OpeningFunctionBraceBsdAllman">
<severity>6</severity>
</rule>
......@@ -34,14 +21,15 @@
<severity>6</severity>
</rule>
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace">
<exclude name="Squiz.WhiteSpace.SuperfluousWhitespace.EmptyLines"/>
<severity>6</severity>
</rule>
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace.EmptyLines">
<severity>0</severity>
</rule>
<rule ref="Generic.NamingConventions.UpperCaseConstantName">
<severity>7</severity>
</rule>
<rule ref="Generic.NamingConventions.ConstructorName">
<severity>7</severity>
</rule>
<rule ref="Generic.PHP.DeprecatedFunctions">
<severity>8</severity>
</rule>
......
  • bmortier @bmortier

    mentioned in issue #814

    By Côme Chilliet on 2017-09-02T15:00:12 (imported from GitLab)

    ·

    mentioned in issue #814

    By Côme Chilliet on 2017-09-02T15:00:12 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment