1
0
mirror of https://github.com/xPaw/PHP-Source-Query.git synced 2026-05-18 12:53:34 +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
+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;
}
}