GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Pull Request — master (#27)
by t
03:29
created
src/ihelpers/Arrays.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
     {
124 124
         if (function_exists('array_column') && false === I::ini('USE_CUSTOM')) {
125 125
             $result = array_column($array, $column, $index);
126
-            if(null === $index){
126
+            if (null === $index) {
127 127
                 $result = self::combine(array_keys($array), $result);
128 128
             }
129 129
             return $result;
Please login to merge, or discard this patch.
src/ihelpers/Console.php 2 patches
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      */
149 149
     public static function stdin()
150 150
     {
151
-        return rtrim((string) fgets(\STDIN), PHP_EOL);
151
+        return rtrim((string)fgets(\STDIN), PHP_EOL);
152 152
     }
153 153
 
154 154
     /**
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 
180 180
         $input = self::stdin();
181 181
         if ('' === $input) {
182
-            return (string) $defaultValue;
182
+            return (string)$defaultValue;
183 183
         }
184 184
         return $input;
185 185
     }
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
      */
241 241
     public static function moveCursorUp($rows = 1)
242 242
     {
243
-        echo '\033[' . (int) $rows . 'A';
243
+        echo '\033[' . (int)$rows . 'A';
244 244
     }
245 245
 
246 246
     /**
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
      */
255 255
     public static function moveCursorDown($rows = 1)
256 256
     {
257
-        echo '\033[' . (int) $rows . 'B';
257
+        echo '\033[' . (int)$rows . 'B';
258 258
     }
259 259
 
260 260
     /**
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
      */
269 269
     public static function moveCursorForward($steps = 1)
270 270
     {
271
-        echo '\033[' . (int) $steps . 'C';
271
+        echo '\033[' . (int)$steps . 'C';
272 272
     }
273 273
 
274 274
     /**
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
      */
283 283
     public static function moveCursorBackward($steps = 1)
284 284
     {
285
-        echo '\033[' . (int) $steps . 'D';
285
+        echo '\033[' . (int)$steps . 'D';
286 286
     }
287 287
 
288 288
     /**
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
      */
295 295
     public static function moveCursorNextLine($lines = 1)
296 296
     {
297
-        echo '\033[' . (int) $lines . 'E';
297
+        echo '\033[' . (int)$lines . 'E';
298 298
     }
299 299
 
300 300
     /**
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
      */
307 307
     public static function moveCursorPrevLine($lines = 1)
308 308
     {
309
-        echo '\033[' . (int) $lines . 'F';
309
+        echo '\033[' . (int)$lines . 'F';
310 310
     }
311 311
 
312 312
     /**
@@ -320,9 +320,9 @@  discard block
 block discarded – undo
320 320
     public static function moveCursorTo($column, $row = null)
321 321
     {
322 322
         if ($row === null) {
323
-            echo '\033[' . (int) $column . 'G';
323
+            echo '\033[' . (int)$column . 'G';
324 324
         } else {
325
-            echo '\033[' . (int) $row . ';' . (int) $column . 'H';
325
+            echo '\033[' . (int)$row . ';' . (int)$column . 'H';
326 326
         }
327 327
     }
328 328
 
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
      */
338 338
     public static function scrollUp($lines = 1)
339 339
     {
340
-        echo '\033[' . (int) $lines . 'S';
340
+        echo '\033[' . (int)$lines . 'S';
341 341
     }
342 342
 
343 343
     /**
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
      */
352 352
     public static function scrollDown($lines = 1)
353 353
     {
354
-        echo '\033[' . (int) $lines . 'T';
354
+        echo '\033[' . (int)$lines . 'T';
355 355
     }
356 356
 
357 357
     /**
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
                 return false;
526 526
             }
527 527
             return $process->getOutput();
528
-        }else{
528
+        } else {
529 529
             return exec($command);
530 530
         }
531 531
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -525,7 +525,7 @@
 block discarded – undo
525 525
                 return false;
526 526
             }
527 527
             return $process->getOutput();
528
-        }else{
528
+        } else{
529 529
             return exec($command);
530 530
         }
531 531
     }
Please login to merge, or discard this patch.