@@ -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 | /** |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | $res .= ') : ('; |
167 | 167 | break; |
168 | 168 | case ';': |
169 | - $res .= str_repeat(')', $p) . ';'; |
|
169 | + $res .= str_repeat(')', $p).';'; |
|
170 | 170 | $p = 0; |
171 | 171 | break; |
172 | 172 | default: |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | if ($res === ';') { |
178 | 178 | return $res; |
179 | 179 | } |
180 | - return '$plural = ' . $res; |
|
180 | + return '$plural = '.$res; |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |