1
0
mirror of https://github.com/xPaw/PHP-Source-Query.git synced 2026-05-18 11:43:33 +02:00

Disable more camelcase goodness

This commit is contained in:
Pavel Djundik
2015-10-21 16:21:57 +03:00
parent 85a2dd534f
commit a8d4418f28
2 changed files with 9 additions and 7 deletions
+4
View File
@@ -13,6 +13,10 @@ engines:
enabled: false
Controversial/CamelCaseParameterName:
enabled: false
Controversial/CamelCaseVariableName:
enabled: false
Controversial/CamelCasePropertyName:
enabled: false
ratings:
paths:
- "SourceQuery/**.php"
+5 -7
View File
@@ -173,15 +173,13 @@
if( $ZeroBytePosition === false )
{
$String = "";
}
else
{
$String = $this->Get( $ZeroBytePosition - $this->Position );
$this->Position++;
return '';
}
$String = $this->Get( $ZeroBytePosition - $this->Position );
$this->Position++;
return $String;
}
}