mirror of
https://github.com/xPaw/PHP-Source-Query.git
synced 2026-06-08 01:46:00 +02:00
Disable more camelcase goodness
This commit is contained in:
@@ -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,15 +173,13 @@
|
|||||||
|
|
||||||
if( $ZeroBytePosition === false )
|
if( $ZeroBytePosition === false )
|
||||||
{
|
{
|
||||||
$String = "";
|
return '';
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$String = $this->Get( $ZeroBytePosition - $this->Position );
|
|
||||||
|
|
||||||
$this->Position++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$String = $this->Get( $ZeroBytePosition - $this->Position );
|
||||||
|
|
||||||
|
$this->Position++;
|
||||||
|
|
||||||
return $String;
|
return $String;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user