Disable more camelcase goodness

pull/94/head
Pavel Djundik 9 years ago
parent 85a2dd534f
commit a8d4418f28

@ -13,6 +13,10 @@ engines:
enabled: false enabled: false
Controversial/CamelCaseParameterName: Controversial/CamelCaseParameterName:
enabled: false enabled: false
Controversial/CamelCaseVariableName:
enabled: false
Controversial/CamelCasePropertyName:
enabled: false
ratings: ratings:
paths: paths:
- "SourceQuery/**.php" - "SourceQuery/**.php"

@ -173,14 +173,12 @@
if( $ZeroBytePosition === false ) if( $ZeroBytePosition === false )
{ {
$String = ""; return '';
} }
else
{
$String = $this->Get( $ZeroBytePosition - $this->Position ); $String = $this->Get( $ZeroBytePosition - $this->Position );
$this->Position++; $this->Position++;
}
return $String; return $String;
} }

Loading…
Cancel
Save