Completed
Pull Request — master (#81)
by Bill
01:56
created
src/Codor/Sniffs/Syntax/LinesAfterMethodSniff.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
      */
15 15
     public function register(): array
16 16
     {
17
-        return [T_FUNCTION];
17
+        return [ T_FUNCTION ];
18 18
     }
19 19
 
20 20
     /**
@@ -27,20 +27,20 @@  discard block
 block discarded – undo
27 27
     public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
28 28
     {
29 29
         $tokens = $phpcsFile->getTokens();
30
-        if (! isset($tokens[$stackPtr]['scope_closer'])) {
30
+        if (!isset($tokens[ $stackPtr ][ 'scope_closer' ])) {
31 31
             return;
32 32
         }
33 33
 
34
-        $endOfMethodIndex = $tokens[$stackPtr]['scope_closer'];
34
+        $endOfMethodIndex = $tokens[ $stackPtr ][ 'scope_closer' ];
35 35
 
36
-        for ($index=$endOfMethodIndex + 1; $index <= count($tokens); $index++) {
37
-            if ($tokens[$index]['type'] !== 'T_WHITESPACE') {
38
-                $nextCodeLine = $tokens[$index]['line'];
36
+        for ($index = $endOfMethodIndex + 1; $index <= count($tokens); $index++) {
37
+            if ($tokens[ $index ][ 'type' ] !== 'T_WHITESPACE') {
38
+                $nextCodeLine = $tokens[ $index ][ 'line' ];
39 39
                 break;
40 40
             }
41 41
         }
42 42
 
43
-        $linesBetween = $nextCodeLine - $tokens[$endOfMethodIndex]['line'] - 1;
43
+        $linesBetween = $nextCodeLine - $tokens[ $endOfMethodIndex ][ 'line' ] - 1;
44 44
 
45 45
         if ($linesBetween > 1) {
46 46
             $phpcsFile->addError("No more than 1 line after a method/function is allowed.", $stackPtr);
Please login to merge, or discard this patch.