@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | * @param \GameQ\Result $result |
253 | 253 | * @return void |
254 | 254 | */ |
255 | - protected function processDetails($data, Result &$result) |
|
255 | + protected function processDetails($data, Result & $result) |
|
256 | 256 | { |
257 | 257 | |
258 | 258 | // Offload the parsing for these values |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | * @param \GameQ\Result $result |
283 | 283 | * @return void |
284 | 284 | */ |
285 | - protected function processChannels($data, Result &$result) |
|
285 | + protected function processChannels($data, Result & $result) |
|
286 | 286 | { |
287 | 287 | |
288 | 288 | // We need to split the data at the pipe |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | * @param \GameQ\Result $result |
310 | 310 | * @return void |
311 | 311 | */ |
312 | - protected function processPlayers($data, Result &$result) |
|
312 | + protected function processPlayers($data, Result & $result) |
|
313 | 313 | { |
314 | 314 | |
315 | 315 | // We need to split the data at the pipe |
@@ -839,7 +839,7 @@ discard block |
||
839 | 839 | * @param \GameQ\Result $result |
840 | 840 | * @return void |
841 | 841 | */ |
842 | - protected function processChannel($data, $fieldCount, Result &$result) |
|
842 | + protected function processChannel($data, $fieldCount, Result & $result) |
|
843 | 843 | { |
844 | 844 | |
845 | 845 | // Split the items on the comma |
@@ -862,7 +862,7 @@ discard block |
||
862 | 862 | * @param \GameQ\Result $result |
863 | 863 | * @return void |
864 | 864 | */ |
865 | - protected function processPlayer($data, $fieldCount, Result &$result) |
|
865 | + protected function processPlayer($data, $fieldCount, Result & $result) |
|
866 | 866 | { |
867 | 867 | |
868 | 868 | // Split the items on the comma |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | * @param \GameQ\Result $result |
152 | 152 | * @throws \GameQ\Exception\Protocol |
153 | 153 | */ |
154 | - protected function processKeyValuePairs(Buffer &$buffer, Result &$result) |
|
154 | + protected function processKeyValuePairs(Buffer & $buffer, Result & $result) |
|
155 | 155 | { |
156 | 156 | |
157 | 157 | // Key / value pairs |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | * @param \GameQ\Result $result |
181 | 181 | * @throws \GameQ\Exception\Protocol |
182 | 182 | */ |
183 | - protected function processPlayersAndTeams(Buffer &$buffer, Result &$result) |
|
183 | + protected function processPlayersAndTeams(Buffer & $buffer, Result & $result) |
|
184 | 184 | { |
185 | 185 | |
186 | 186 | // Players and team info |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | * @return void |
191 | 191 | * @throws \GameQ\Exception\Protocol |
192 | 192 | */ |
193 | - protected function parsePlayers(Buffer &$buffer, Result &$result) |
|
193 | + protected function parsePlayers(Buffer & $buffer, Result & $result) |
|
194 | 194 | { |
195 | 195 | // By default there are 0 players |
196 | 196 | $players = 0; |
@@ -221,7 +221,7 @@ discard block |
||
221 | 221 | * @return void |
222 | 222 | * @throws \GameQ\Exception\Protocol |
223 | 223 | */ |
224 | - protected function parsePlayersExtra(Buffer &$buffer, Result &$result) |
|
224 | + protected function parsePlayersExtra(Buffer & $buffer, Result & $result) |
|
225 | 225 | { |
226 | 226 | // Iterate over the extra player info |
227 | 227 | while (($id = $buffer->readInt8()) != 32) { |