@@ -72,7 +72,7 @@ |
||
| 72 | 72 | * @return array Array of Integers |
| 73 | 73 | */ |
| 74 | 74 | public function readintarray($unpack, $pos, $count) { |
| 75 | - return unpack($unpack . $count, $this->read($pos, 4 * $count)); |
|
| 75 | + return unpack($unpack.$count, $this->read($pos, 4 * $count)); |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | } |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | */ |
| 82 | 82 | public static function load_functions() |
| 83 | 83 | { |
| 84 | - require_once __DIR__ . '/functions.php'; |
|
| 84 | + require_once __DIR__.'/functions.php'; |
|
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | /** |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | $res .= ') : ('; |
| 191 | 191 | break; |
| 192 | 192 | case ';': |
| 193 | - $res .= str_repeat(')', $parenthesis) . ';'; |
|
| 193 | + $res .= str_repeat(')', $parenthesis).';'; |
|
| 194 | 194 | $parenthesis = 0; |
| 195 | 195 | break; |
| 196 | 196 | default: |
@@ -201,7 +201,7 @@ discard block |
||
| 201 | 201 | if ($res === ';') { |
| 202 | 202 | return $res; |
| 203 | 203 | } |
| 204 | - return '$plural = ' . $res; |
|
| 204 | + return '$plural = '.$res; |
|
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | /** |