Completed
Push — master ( 8cd077 )
by Tomáš
09:25
created
scripts/build-phar.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -292,7 +292,7 @@
 block discarded – undo
292 292
     return array(
293 293
             'whiz',
294 294
             'bang',
295
-           );
295
+            );
296 296
 
297 297
     case 2:
298 298
     return helper_func(
Please login to merge, or discard this patch.
src/Files/File.php 4 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -866,7 +866,7 @@  discard block
 block discarded – undo
866 866
      * @param string $error    The error message.
867 867
      * @param int    $line     The line on which the error occurred.
868 868
      * @param string $code     A violation code unique to the sniff message.
869
-     * @param array  $data     Replacements for the error message.
869
+     * @param string[]  $data     Replacements for the error message.
870 870
      * @param int    $severity The severity level for this error. A value of 0 will be converted into the default severity level.
871 871
      *                          will be converted into the default severity level.
872 872
      *
@@ -890,7 +890,7 @@  discard block
 block discarded – undo
890 890
      * @param string $warning  The error message.
891 891
      * @param int    $line     The line on which the warning occurred.
892 892
      * @param string $code     A violation code unique to the sniff message.
893
-     * @param array  $data     Replacements for the warning message.
893
+     * @param string[]  $data     Replacements for the warning message.
894 894
      * @param int    $severity The severity level for this warning. A value of 0 will be converted into the default severity level.
895 895
      *                          will be converted into the default severity level.
896 896
      *
Please login to merge, or discard this patch.
Indentation   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -780,11 +780,11 @@  discard block
 block discarded – undo
780 780
             }
781 781
 
782 782
             $checkCodes = array(
783
-                           $sniffCode,
784
-                           $parts[0].'.'.$parts[1].'.'.$parts[2],
785
-                           $parts[0].'.'.$parts[1],
786
-                           $parts[0],
787
-                          );
783
+                            $sniffCode,
784
+                            $parts[0].'.'.$parts[1].'.'.$parts[2],
785
+                            $parts[0].'.'.$parts[1],
786
+                            $parts[0],
787
+                            );
788 788
         }//end if
789 789
 
790 790
         // Filter out any messages for sniffs that shouldn't have run
@@ -860,8 +860,8 @@  discard block
 block discarded – undo
860 860
                 // While there is support for a type of each pattern
861 861
                 // (absolute or relative) we don't actually support it here.
862 862
                 $replacements = array(
863
-                                 '\\,' => ',',
864
-                                 '*'   => '.*',
863
+                                    '\\,' => ',',
864
+                                    '*'   => '.*',
865 865
                                 );
866 866
 
867 867
                 // We assume a / directory separator, as do the exclude rules
@@ -908,12 +908,12 @@  discard block
 block discarded – undo
908 908
         }
909 909
 
910 910
         $messages[$line][$column][] = array(
911
-                                       'message'  => $message,
912
-                                       'source'   => $sniffCode,
913
-                                       'listener' => $this->activeListener,
914
-                                       'severity' => $severity,
915
-                                       'fixable'  => $fixable,
916
-                                      );
911
+                                        'message'  => $message,
912
+                                        'source'   => $sniffCode,
913
+                                        'listener' => $this->activeListener,
914
+                                        'severity' => $severity,
915
+                                        'fixable'  => $fixable,
916
+                                        );
917 917
 
918 918
         if (PHP_CODESNIFFER_VERBOSITY > 1
919 919
             && $this->fixer->enabled === true
@@ -1328,16 +1328,16 @@  discard block
 block discarded – undo
1328 1328
         }
1329 1329
 
1330 1330
         $valid = array(
1331
-                  T_PUBLIC      => T_PUBLIC,
1332
-                  T_PRIVATE     => T_PRIVATE,
1333
-                  T_PROTECTED   => T_PROTECTED,
1334
-                  T_STATIC      => T_STATIC,
1335
-                  T_FINAL       => T_FINAL,
1336
-                  T_ABSTRACT    => T_ABSTRACT,
1337
-                  T_WHITESPACE  => T_WHITESPACE,
1338
-                  T_COMMENT     => T_COMMENT,
1339
-                  T_DOC_COMMENT => T_DOC_COMMENT,
1340
-                 );
1331
+                    T_PUBLIC      => T_PUBLIC,
1332
+                    T_PRIVATE     => T_PRIVATE,
1333
+                    T_PROTECTED   => T_PROTECTED,
1334
+                    T_STATIC      => T_STATIC,
1335
+                    T_FINAL       => T_FINAL,
1336
+                    T_ABSTRACT    => T_ABSTRACT,
1337
+                    T_WHITESPACE  => T_WHITESPACE,
1338
+                    T_COMMENT     => T_COMMENT,
1339
+                    T_DOC_COMMENT => T_DOC_COMMENT,
1340
+                    );
1341 1341
 
1342 1342
         $scope          = 'public';
1343 1343
         $scopeSpecified = false;
@@ -1383,7 +1383,7 @@  discard block
 block discarded – undo
1383 1383
                 'is_final'        => $isFinal,
1384 1384
                 'is_static'       => $isStatic,
1385 1385
                 'is_closure'      => $isClosure,
1386
-               );
1386
+                );
1387 1387
 
1388 1388
     }//end getMethodProperties()
1389 1389
 
@@ -1441,16 +1441,16 @@  discard block
 block discarded – undo
1441 1441
         }
1442 1442
 
1443 1443
         $valid = array(
1444
-                  T_PUBLIC      => T_PUBLIC,
1445
-                  T_PRIVATE     => T_PRIVATE,
1446
-                  T_PROTECTED   => T_PROTECTED,
1447
-                  T_STATIC      => T_STATIC,
1448
-                  T_WHITESPACE  => T_WHITESPACE,
1449
-                  T_COMMENT     => T_COMMENT,
1450
-                  T_DOC_COMMENT => T_DOC_COMMENT,
1451
-                  T_VARIABLE    => T_VARIABLE,
1452
-                  T_COMMA       => T_COMMA,
1453
-                 );
1444
+                    T_PUBLIC      => T_PUBLIC,
1445
+                    T_PRIVATE     => T_PRIVATE,
1446
+                    T_PROTECTED   => T_PROTECTED,
1447
+                    T_STATIC      => T_STATIC,
1448
+                    T_WHITESPACE  => T_WHITESPACE,
1449
+                    T_COMMENT     => T_COMMENT,
1450
+                    T_DOC_COMMENT => T_DOC_COMMENT,
1451
+                    T_VARIABLE    => T_VARIABLE,
1452
+                    T_COMMA       => T_COMMA,
1453
+                    );
1454 1454
 
1455 1455
         $scope          = 'public';
1456 1456
         $scopeSpecified = false;
@@ -1484,7 +1484,7 @@  discard block
 block discarded – undo
1484 1484
                 'scope'           => $scope,
1485 1485
                 'scope_specified' => $scopeSpecified,
1486 1486
                 'is_static'       => $isStatic,
1487
-               );
1487
+                );
1488 1488
 
1489 1489
     }//end getMemberProperties()
1490 1490
 
@@ -1514,12 +1514,12 @@  discard block
 block discarded – undo
1514 1514
         }
1515 1515
 
1516 1516
         $valid = array(
1517
-                  T_FINAL       => T_FINAL,
1518
-                  T_ABSTRACT    => T_ABSTRACT,
1519
-                  T_WHITESPACE  => T_WHITESPACE,
1520
-                  T_COMMENT     => T_COMMENT,
1521
-                  T_DOC_COMMENT => T_DOC_COMMENT,
1522
-                 );
1517
+                    T_FINAL       => T_FINAL,
1518
+                    T_ABSTRACT    => T_ABSTRACT,
1519
+                    T_WHITESPACE  => T_WHITESPACE,
1520
+                    T_COMMENT     => T_COMMENT,
1521
+                    T_DOC_COMMENT => T_DOC_COMMENT,
1522
+                    );
1523 1523
 
1524 1524
         $isAbstract = false;
1525 1525
         $isFinal    = false;
@@ -1543,7 +1543,7 @@  discard block
 block discarded – undo
1543 1543
         return array(
1544 1544
                 'is_abstract' => $isAbstract,
1545 1545
                 'is_final'    => $isFinal,
1546
-               );
1546
+                );
1547 1547
 
1548 1548
     }//end getClassProperties()
1549 1549
 
@@ -1893,17 +1893,17 @@  discard block
 block discarded – undo
1893 1893
     public function findEndOfStatement($start, $ignore=null)
1894 1894
     {
1895 1895
         $endTokens = array(
1896
-                      T_COLON                => true,
1897
-                      T_COMMA                => true,
1898
-                      T_DOUBLE_ARROW         => true,
1899
-                      T_SEMICOLON            => true,
1900
-                      T_CLOSE_PARENTHESIS    => true,
1901
-                      T_CLOSE_SQUARE_BRACKET => true,
1902
-                      T_CLOSE_CURLY_BRACKET  => true,
1903
-                      T_CLOSE_SHORT_ARRAY    => true,
1904
-                      T_OPEN_TAG             => true,
1905
-                      T_CLOSE_TAG            => true,
1906
-                     );
1896
+                        T_COLON                => true,
1897
+                        T_COMMA                => true,
1898
+                        T_DOUBLE_ARROW         => true,
1899
+                        T_SEMICOLON            => true,
1900
+                        T_CLOSE_PARENTHESIS    => true,
1901
+                        T_CLOSE_SQUARE_BRACKET => true,
1902
+                        T_CLOSE_CURLY_BRACKET  => true,
1903
+                        T_CLOSE_SHORT_ARRAY    => true,
1904
+                        T_OPEN_TAG             => true,
1905
+                        T_CLOSE_TAG            => true,
1906
+                        );
1907 1907
 
1908 1908
         if ($ignore !== null) {
1909 1909
             $ignore = (array) $ignore;
@@ -2116,9 +2116,9 @@  discard block
 block discarded – undo
2116 2116
         }
2117 2117
 
2118 2118
         $find = array(
2119
-                 T_NS_SEPARATOR,
2120
-                 T_STRING,
2121
-                 T_WHITESPACE,
2119
+                    T_NS_SEPARATOR,
2120
+                    T_STRING,
2121
+                    T_WHITESPACE,
2122 2122
                 );
2123 2123
 
2124 2124
         $end  = $this->findNext($find, ($extendsIndex + 1), $classCloserIndex, true);
Please login to merge, or discard this patch.
Switch Indentation   +112 added lines, -112 removed lines patch added patch discarded remove patch
@@ -1209,88 +1209,88 @@  discard block
 block discarded – undo
1209 1209
             }
1210 1210
 
1211 1211
             switch ($this->tokens[$i]['code']) {
1212
-            case T_BITWISE_AND:
1213
-                $passByReference = true;
1214
-                break;
1215
-            case T_VARIABLE:
1216
-                $currVar = $i;
1217
-                break;
1218
-            case T_ELLIPSIS:
1219
-                $variableLength = true;
1220
-                break;
1221
-            case T_ARRAY_HINT:
1222
-            case T_CALLABLE:
1223
-                $typeHint = $this->tokens[$i]['content'];
1224
-                break;
1225
-            case T_STRING:
1226
-                // This is a string, so it may be a type hint, but it could
1227
-                // also be a constant used as a default value.
1228
-                $prevComma = false;
1229
-                for ($t = $i; $t >= $opener; $t--) {
1230
-                    if ($this->tokens[$t]['code'] === T_COMMA) {
1231
-                        $prevComma = $t;
1232
-                        break;
1212
+                case T_BITWISE_AND:
1213
+                    $passByReference = true;
1214
+                    break;
1215
+                case T_VARIABLE:
1216
+                    $currVar = $i;
1217
+                    break;
1218
+                case T_ELLIPSIS:
1219
+                    $variableLength = true;
1220
+                    break;
1221
+                case T_ARRAY_HINT:
1222
+                case T_CALLABLE:
1223
+                    $typeHint = $this->tokens[$i]['content'];
1224
+                    break;
1225
+                case T_STRING:
1226
+                    // This is a string, so it may be a type hint, but it could
1227
+                    // also be a constant used as a default value.
1228
+                    $prevComma = false;
1229
+                    for ($t = $i; $t >= $opener; $t--) {
1230
+                        if ($this->tokens[$t]['code'] === T_COMMA) {
1231
+                            $prevComma = $t;
1232
+                            break;
1233
+                        }
1233 1234
                     }
1234
-                }
1235 1235
 
1236
-                if ($prevComma !== false) {
1237
-                    $nextEquals = false;
1238
-                    for ($t = $prevComma; $t < $i; $t++) {
1239
-                        if ($this->tokens[$t]['code'] === T_EQUAL) {
1240
-                            $nextEquals = $t;
1236
+                    if ($prevComma !== false) {
1237
+                        $nextEquals = false;
1238
+                        for ($t = $prevComma; $t < $i; $t++) {
1239
+                            if ($this->tokens[$t]['code'] === T_EQUAL) {
1240
+                                $nextEquals = $t;
1241
+                                break;
1242
+                            }
1243
+                        }
1244
+
1245
+                        if ($nextEquals !== false) {
1241 1246
                             break;
1242 1247
                         }
1243 1248
                     }
1244 1249
 
1245
-                    if ($nextEquals !== false) {
1246
-                        break;
1250
+                    if ($defaultStart === null) {
1251
+                        $typeHint .= $this->tokens[$i]['content'];
1252
+                    }
1253
+                    break;
1254
+                case T_NS_SEPARATOR:
1255
+                    // Part of a type hint or default value.
1256
+                    if ($defaultStart === null) {
1257
+                        $typeHint .= $this->tokens[$i]['content'];
1258
+                    }
1259
+                    break;
1260
+                case T_CLOSE_PARENTHESIS:
1261
+                case T_COMMA:
1262
+                    // If it's null, then there must be no parameters for this
1263
+                    // method.
1264
+                    if ($currVar === null) {
1265
+                        continue;
1247 1266
                     }
1248
-                }
1249
-
1250
-                if ($defaultStart === null) {
1251
-                    $typeHint .= $this->tokens[$i]['content'];
1252
-                }
1253
-                break;
1254
-            case T_NS_SEPARATOR:
1255
-                // Part of a type hint or default value.
1256
-                if ($defaultStart === null) {
1257
-                    $typeHint .= $this->tokens[$i]['content'];
1258
-                }
1259
-                break;
1260
-            case T_CLOSE_PARENTHESIS:
1261
-            case T_COMMA:
1262
-                // If it's null, then there must be no parameters for this
1263
-                // method.
1264
-                if ($currVar === null) {
1265
-                    continue;
1266
-                }
1267 1267
 
1268
-                $vars[$paramCount]         = array();
1269
-                $vars[$paramCount]['name'] = $this->tokens[$currVar]['content'];
1268
+                    $vars[$paramCount]         = array();
1269
+                    $vars[$paramCount]['name'] = $this->tokens[$currVar]['content'];
1270 1270
 
1271
-                if ($defaultStart !== null) {
1272
-                    $vars[$paramCount]['default']
1273
-                        = $this->getTokensAsString(
1274
-                            $defaultStart,
1275
-                            ($i - $defaultStart)
1276
-                        );
1277
-                }
1271
+                    if ($defaultStart !== null) {
1272
+                        $vars[$paramCount]['default']
1273
+                            = $this->getTokensAsString(
1274
+                                $defaultStart,
1275
+                                ($i - $defaultStart)
1276
+                            );
1277
+                    }
1278 1278
 
1279
-                $vars[$paramCount]['pass_by_reference'] = $passByReference;
1280
-                $vars[$paramCount]['variable_length']   = $variableLength;
1281
-                $vars[$paramCount]['type_hint']         = $typeHint;
1279
+                    $vars[$paramCount]['pass_by_reference'] = $passByReference;
1280
+                    $vars[$paramCount]['variable_length']   = $variableLength;
1281
+                    $vars[$paramCount]['type_hint']         = $typeHint;
1282 1282
 
1283
-                // Reset the vars, as we are about to process the next parameter.
1284
-                $defaultStart    = null;
1285
-                $passByReference = false;
1286
-                $variableLength  = false;
1287
-                $typeHint        = '';
1283
+                    // Reset the vars, as we are about to process the next parameter.
1284
+                    $defaultStart    = null;
1285
+                    $passByReference = false;
1286
+                    $variableLength  = false;
1287
+                    $typeHint        = '';
1288 1288
 
1289
-                $paramCount++;
1290
-                break;
1291
-            case T_EQUAL:
1292
-                $defaultStart = ($i + 1);
1293
-                break;
1289
+                    $paramCount++;
1290
+                    break;
1291
+                case T_EQUAL:
1292
+                    $defaultStart = ($i + 1);
1293
+                    break;
1294 1294
             }//end switch
1295 1295
         }//end for
1296 1296
 
@@ -1352,27 +1352,27 @@  discard block
 block discarded – undo
1352 1352
             }
1353 1353
 
1354 1354
             switch ($this->tokens[$i]['code']) {
1355
-            case T_PUBLIC:
1356
-                $scope          = 'public';
1357
-                $scopeSpecified = true;
1358
-                break;
1359
-            case T_PRIVATE:
1360
-                $scope          = 'private';
1361
-                $scopeSpecified = true;
1362
-                break;
1363
-            case T_PROTECTED:
1364
-                $scope          = 'protected';
1365
-                $scopeSpecified = true;
1366
-                break;
1367
-            case T_ABSTRACT:
1368
-                $isAbstract = true;
1369
-                break;
1370
-            case T_FINAL:
1371
-                $isFinal = true;
1372
-                break;
1373
-            case T_STATIC:
1374
-                $isStatic = true;
1375
-                break;
1355
+                case T_PUBLIC:
1356
+                    $scope          = 'public';
1357
+                    $scopeSpecified = true;
1358
+                    break;
1359
+                case T_PRIVATE:
1360
+                    $scope          = 'private';
1361
+                    $scopeSpecified = true;
1362
+                    break;
1363
+                case T_PROTECTED:
1364
+                    $scope          = 'protected';
1365
+                    $scopeSpecified = true;
1366
+                    break;
1367
+                case T_ABSTRACT:
1368
+                    $isAbstract = true;
1369
+                    break;
1370
+                case T_FINAL:
1371
+                    $isFinal = true;
1372
+                    break;
1373
+                case T_STATIC:
1374
+                    $isStatic = true;
1375
+                    break;
1376 1376
             }//end switch
1377 1377
         }//end for
1378 1378
 
@@ -1462,21 +1462,21 @@  discard block
 block discarded – undo
1462 1462
             }
1463 1463
 
1464 1464
             switch ($this->tokens[$i]['code']) {
1465
-            case T_PUBLIC:
1466
-                $scope          = 'public';
1467
-                $scopeSpecified = true;
1468
-                break;
1469
-            case T_PRIVATE:
1470
-                $scope          = 'private';
1471
-                $scopeSpecified = true;
1472
-                break;
1473
-            case T_PROTECTED:
1474
-                $scope          = 'protected';
1475
-                $scopeSpecified = true;
1476
-                break;
1477
-            case T_STATIC:
1478
-                $isStatic = true;
1479
-                break;
1465
+                case T_PUBLIC:
1466
+                    $scope          = 'public';
1467
+                    $scopeSpecified = true;
1468
+                    break;
1469
+                case T_PRIVATE:
1470
+                    $scope          = 'private';
1471
+                    $scopeSpecified = true;
1472
+                    break;
1473
+                case T_PROTECTED:
1474
+                    $scope          = 'protected';
1475
+                    $scopeSpecified = true;
1476
+                    break;
1477
+                case T_STATIC:
1478
+                    $isStatic = true;
1479
+                    break;
1480 1480
             }
1481 1481
         }//end for
1482 1482
 
@@ -1530,13 +1530,13 @@  discard block
 block discarded – undo
1530 1530
             }
1531 1531
 
1532 1532
             switch ($this->tokens[$i]['code']) {
1533
-            case T_ABSTRACT:
1534
-                $isAbstract = true;
1535
-                break;
1533
+                case T_ABSTRACT:
1534
+                    $isAbstract = true;
1535
+                    break;
1536 1536
 
1537
-            case T_FINAL:
1538
-                $isFinal = true;
1539
-                break;
1537
+                case T_FINAL:
1538
+                    $isFinal = true;
1539
+                    break;
1540 1540
             }
1541 1541
         }//end for
1542 1542
 
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -572,9 +572,9 @@  discard block
 block discarded – undo
572 572
         $error,
573 573
         $stackPtr,
574 574
         $code,
575
-        $data=array(),
576
-        $severity=0,
577
-        $fixable=false
575
+        $data = array(),
576
+        $severity = 0,
577
+        $fixable = false
578 578
     ) {
579 579
         if ($stackPtr === null) {
580 580
             $line   = 1;
@@ -606,9 +606,9 @@  discard block
 block discarded – undo
606 606
         $warning,
607 607
         $stackPtr,
608 608
         $code,
609
-        $data=array(),
610
-        $severity=0,
611
-        $fixable=false
609
+        $data = array(),
610
+        $severity = 0,
611
+        $fixable = false
612 612
     ) {
613 613
         if ($stackPtr === null) {
614 614
             $line   = 1;
@@ -639,8 +639,8 @@  discard block
 block discarded – undo
639 639
         $error,
640 640
         $line,
641 641
         $code,
642
-        $data=array(),
643
-        $severity=0
642
+        $data = array(),
643
+        $severity = 0
644 644
     ) {
645 645
         return $this->addMessage(true, $error, $line, 1, $code, $data, $severity, false);
646 646
 
@@ -663,8 +663,8 @@  discard block
 block discarded – undo
663 663
         $warning,
664 664
         $line,
665 665
         $code,
666
-        $data=array(),
667
-        $severity=0
666
+        $data = array(),
667
+        $severity = 0
668 668
     ) {
669 669
         return $this->addMessage(false, $warning, $line, 1, $code, $data, $severity, false);
670 670
 
@@ -689,8 +689,8 @@  discard block
 block discarded – undo
689 689
         $error,
690 690
         $stackPtr,
691 691
         $code,
692
-        $data=array(),
693
-        $severity=0
692
+        $data = array(),
693
+        $severity = 0
694 694
     ) {
695 695
         $recorded = $this->addError($error, $stackPtr, $code, $data, $severity, true);
696 696
         if ($recorded === true && $this->fixer->enabled === true) {
@@ -720,8 +720,8 @@  discard block
 block discarded – undo
720 720
         $warning,
721 721
         $stackPtr,
722 722
         $code,
723
-        $data=array(),
724
-        $severity=0
723
+        $data = array(),
724
+        $severity = 0
725 725
     ) {
726 726
         $recorded = $this->addWarning($warning, $stackPtr, $code, $data, $severity, true);
727 727
         if ($recorded === true && $this->fixer->enabled === true) {
@@ -1698,10 +1698,10 @@  discard block
 block discarded – undo
1698 1698
     public function findPrevious(
1699 1699
         $types,
1700 1700
         $start,
1701
-        $end=null,
1702
-        $exclude=false,
1703
-        $value=null,
1704
-        $local=false
1701
+        $end = null,
1702
+        $exclude = false,
1703
+        $value = null,
1704
+        $local = false
1705 1705
     ) {
1706 1706
         $types = (array) $types;
1707 1707
 
@@ -1779,10 +1779,10 @@  discard block
 block discarded – undo
1779 1779
     public function findNext(
1780 1780
         $types,
1781 1781
         $start,
1782
-        $end=null,
1783
-        $exclude=false,
1784
-        $value=null,
1785
-        $local=false
1782
+        $end = null,
1783
+        $exclude = false,
1784
+        $value = null,
1785
+        $local = false
1786 1786
     ) {
1787 1787
         $types = (array) $types;
1788 1788
 
@@ -1825,7 +1825,7 @@  discard block
 block discarded – undo
1825 1825
      *
1826 1826
      * @return int
1827 1827
      */
1828
-    public function findStartOfStatement($start, $ignore=null)
1828
+    public function findStartOfStatement($start, $ignore = null)
1829 1829
     {
1830 1830
         $endTokens = Util\Tokens::$blockOpeners;
1831 1831
 
@@ -1890,7 +1890,7 @@  discard block
 block discarded – undo
1890 1890
      *
1891 1891
      * @return int
1892 1892
      */
1893
-    public function findEndOfStatement($start, $ignore=null)
1893
+    public function findEndOfStatement($start, $ignore = null)
1894 1894
     {
1895 1895
         $endTokens = array(
1896 1896
                       T_COLON                => true,
@@ -1974,7 +1974,7 @@  discard block
 block discarded – undo
1974 1974
      *
1975 1975
      * @return int | bool
1976 1976
      */
1977
-    public function findFirstOnLine($types, $start, $exclude=false, $value=null)
1977
+    public function findFirstOnLine($types, $start, $exclude = false, $value = null)
1978 1978
     {
1979 1979
         if (is_array($types) === false) {
1980 1980
             $types = array($types);
Please login to merge, or discard this patch.
src/Files/FileList.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@
 block discarded – undo
193 193
     /**
194 194
      * Return the file path of the current file being processed.
195 195
      *
196
-     * @return void
196
+     * @return string
197 197
      */
198 198
     function key()
199 199
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
      *
107 107
      * @return void
108 108
      */
109
-    public function addFile($path, $file=null)
109
+    public function addFile($path, $file = null)
110 110
     {
111 111
         // No filtering is done for STDIN.
112 112
         if ($path === 'STDIN'
Please login to merge, or discard this patch.
src/Fixer.php 4 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
     /**
357 357
      * Start recording actions for a changeset.
358 358
      *
359
-     * @return void
359
+     * @return false|null
360 360
      */
361 361
     public function beginChangeset()
362 362
     {
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
     /**
384 384
      * Stop recording actions for a changeset, and apply logged changes.
385 385
      *
386
-     * @return boolean
386
+     * @return false|null
387 387
      */
388 388
     public function endChangeset()
389 389
     {
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -529,9 +529,9 @@
 block discarded – undo
529 529
 
530 530
         if (isset($this->_oldTokenValues[$stackPtr]) === false) {
531 531
             $this->_oldTokenValues[$stackPtr] = array(
532
-                                                 'curr' => $content,
533
-                                                 'prev' => $this->_tokens[$stackPtr],
534
-                                                 'loop' => $this->loops,
532
+                                                    'curr' => $content,
533
+                                                    'prev' => $this->_tokens[$stackPtr],
534
+                                                    'loop' => $this->loops,
535 535
                                                 );
536 536
         } else {
537 537
             if ($this->_oldTokenValues[$stackPtr]['prev'] === $content
Please login to merge, or discard this patch.
Switch Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -283,14 +283,14 @@
 block discarded – undo
283 283
         foreach ($diffLines as $line) {
284 284
             if (isset($line[0]) === true) {
285 285
                 switch ($line[0]) {
286
-                case '-':
287
-                    $diff[] = "\033[31m$line\033[0m";
288
-                    break;
289
-                case '+':
290
-                    $diff[] = "\033[32m$line\033[0m";
291
-                    break;
292
-                default:
293
-                    $diff[] = $line;
286
+                    case '-':
287
+                        $diff[] = "\033[31m$line\033[0m";
288
+                        break;
289
+                    case '+':
290
+                        $diff[] = "\033[32m$line\033[0m";
291
+                        break;
292
+                    default:
293
+                        $diff[] = $line;
294 294
                 }
295 295
             }
296 296
         }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
      *
238 238
      * @return string
239 239
      */
240
-    public function generateDiff($filePath=null, $colors=true)
240
+    public function generateDiff($filePath = null, $colors = true)
241 241
     {
242 242
         if ($filePath === null) {
243 243
             $filePath = $this->_currentFile->getFilename();
@@ -654,7 +654,7 @@  discard block
 block discarded – undo
654 654
      *
655 655
      * @return bool If the change was accepted.
656 656
      */
657
-    public function substrToken($stackPtr, $start, $length=null)
657
+    public function substrToken($stackPtr, $start, $length = null)
658 658
     {
659 659
         $current = $this->getTokenContent($stackPtr);
660 660
 
Please login to merge, or discard this patch.
src/Generators/Generator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 
15 15
 use PHP_CodeSniffer\Ruleset;
16 16
 use PHP_CodeSniffer\Autoload;
17
-use PHP_CodeSniffer\Util\Common;
18 17
 
19 18
 abstract class Generator
20 19
 {
Please login to merge, or discard this patch.
src/Reports/Cbf.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,11 +27,11 @@
 block discarded – undo
27 27
      * its data should be counted in the grand totals.
28 28
      *
29 29
      * @param array                 $report      Prepared report data.
30
-     * @param \PHP_CodeSniffer\File $phpcsFile   The file being reported on.
30
+     * @param File $phpcsFile   The file being reported on.
31 31
      * @param bool                  $showSources Show sources?
32 32
      * @param int                   $width       Maximum allowed line width.
33 33
      *
34
-     * @return bool
34
+     * @return null|boolean
35 35
      */
36 36
     public function generateFileReport($report, File $phpcsFile, $showSources=false, $width=80)
37 37
     {
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      *
34 34
      * @return bool
35 35
      */
36
-    public function generateFileReport($report, File $phpcsFile, $showSources=false, $width=80)
36
+    public function generateFileReport($report, File $phpcsFile, $showSources = false, $width = 80)
37 37
     {
38 38
         $errors = $phpcsFile->getFixableCount();
39 39
         if ($errors !== 0) {
@@ -122,10 +122,10 @@  discard block
 block discarded – undo
122 122
         $totalErrors,
123 123
         $totalWarnings,
124 124
         $totalFixable,
125
-        $showSources=false,
126
-        $width=80,
127
-        $interactive=false,
128
-        $toScreen=true
125
+        $showSources = false,
126
+        $width = 80,
127
+        $interactive = false,
128
+        $toScreen = true
129 129
     ) {
130 130
         $fixed = 0;
131 131
         $fails = 0;
Please login to merge, or discard this patch.
src/Reports/Checkstyle.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * its data should be counted in the grand totals.
25 25
      *
26 26
      * @param array                 $report      Prepared report data.
27
-     * @param \PHP_CodeSniffer\File $phpcsFile   The file being reported on.
27
+     * @param File $phpcsFile   The file being reported on.
28 28
      * @param bool                  $showSources Show sources?
29 29
      * @param int                   $width       Maximum allowed line width.
30 30
      *
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      *
31 31
      * @return bool
32 32
      */
33
-    public function generateFileReport($report, File $phpcsFile, $showSources=false, $width=80)
33
+    public function generateFileReport($report, File $phpcsFile, $showSources = false, $width = 80)
34 34
     {
35 35
         $out = new \XMLWriter;
36 36
         $out->openMemory();
@@ -93,10 +93,10 @@  discard block
 block discarded – undo
93 93
         $totalErrors,
94 94
         $totalWarnings,
95 95
         $totalFixable,
96
-        $showSources=false,
97
-        $width=80,
98
-        $interactive=false,
99
-        $toScreen=true
96
+        $showSources = false,
97
+        $width = 80,
98
+        $interactive = false,
99
+        $toScreen = true
100 100
     ) {
101 101
         echo '<?xml version="1.0" encoding="UTF-8"?>'.PHP_EOL;
102 102
         echo '<checkstyle version="'.Config::VERSION.'">'.PHP_EOL;
Please login to merge, or discard this patch.
src/Reports/Code.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * its data should be counted in the grand totals.
25 25
      *
26 26
      * @param array                 $report      Prepared report data.
27
-     * @param \PHP_CodeSniffer\File $phpcsFile   The file being reported on.
27
+     * @param File $phpcsFile   The file being reported on.
28 28
      * @param bool                  $showSources Show sources?
29 29
      * @param int                   $width       Maximum allowed line width.
30 30
      *
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -79,9 +79,9 @@
 block discarded – undo
79 79
 
80 80
                 $lastLine++;
81 81
                 $lineTokens[$lastLine] = array(
82
-                                          'start' => $stackPtr,
83
-                                          'end'   => null,
84
-                                         );
82
+                                            'start' => $stackPtr,
83
+                                            'end'   => null,
84
+                                            );
85 85
             }
86 86
         }
87 87
 
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      *
31 31
      * @return bool
32 32
      */
33
-    public function generateFileReport($report, File $phpcsFile, $showSources=false, $width=80)
33
+    public function generateFileReport($report, File $phpcsFile, $showSources = false, $width = 80)
34 34
     {
35 35
         if ($report['errors'] === 0 && $report['warnings'] === 0) {
36 36
             // Nothing to print.
@@ -333,10 +333,10 @@  discard block
 block discarded – undo
333 333
         $totalErrors,
334 334
         $totalWarnings,
335 335
         $totalFixable,
336
-        $showSources=false,
337
-        $width=80,
338
-        $interactive=false,
339
-        $toScreen=true
336
+        $showSources = false,
337
+        $width = 80,
338
+        $interactive = false,
339
+        $toScreen = true
340 340
     ) {
341 341
         if ($cachedData === '') {
342 342
             return;
Please login to merge, or discard this patch.
src/Reports/Diff.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * its data should be counted in the grand totals.
25 25
      *
26 26
      * @param array                 $report      Prepared report data.
27
-     * @param \PHP_CodeSniffer\File $phpcsFile   The file being reported on.
27
+     * @param File $phpcsFile   The file being reported on.
28 28
      * @param bool                  $showSources Show sources?
29 29
      * @param int                   $width       Maximum allowed line width.
30 30
      *
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 namespace PHP_CodeSniffer\Reports;
11 11
 
12 12
 use PHP_CodeSniffer\Files\File;
13
-use PHP_CodeSniffer\Util;
14 13
 
15 14
 class Diff implements Report
16 15
 {
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      *
31 31
      * @return bool
32 32
      */
33
-    public function generateFileReport($report, File $phpcsFile, $showSources=false, $width=80)
33
+    public function generateFileReport($report, File $phpcsFile, $showSources = false, $width = 80)
34 34
     {
35 35
         $errors = $phpcsFile->getFixableCount();
36 36
         if ($errors === 0) {
@@ -146,10 +146,10 @@  discard block
 block discarded – undo
146 146
         $totalErrors,
147 147
         $totalWarnings,
148 148
         $totalFixable,
149
-        $showSources=false,
150
-        $width=80,
151
-        $interactive=false,
152
-        $toScreen=true
149
+        $showSources = false,
150
+        $width = 80,
151
+        $interactive = false,
152
+        $toScreen = true
153 153
     ) {
154 154
         echo $cachedData;
155 155
         if ($toScreen === true) {
Please login to merge, or discard this patch.