Passed
Push — v3 ( dc00fa...37cdd6 )
by
unknown
02:41
created
src/GameQ/Protocols/Teamspeak3.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
src/GameQ/Protocols/Ventrilo.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -839,7 +839,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
src/GameQ/Protocols/Ase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
src/GameQ/Protocols/Etqw.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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) {
Please login to merge, or discard this patch.