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
Push — master ( 090e97...090e97 )
by Michael
01:04
created
src/Rule/CleanCode/DataStructureMethods.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     }
61 61
 
62 62
     /**
63
-     * @param MethodNode|ASTMethod $node
63
+     * @param MethodNode $node
64 64
      *
65 65
      * @return bool
66 66
      */
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     }
77 77
 
78 78
     /**
79
-     * @param MethodNode|ASTMethod $node
79
+     * @param MethodNode $node
80 80
      *
81 81
      * @return bool
82 82
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
         foreach ($methods as $method) {
134 134
             if ('set' === substr($method->getImage(), 0, 3)) {
135 135
                 $child = $method->getFirstChildOfType('Variable');
136
-                if($child && '$this' === $child->getImage()) {
136
+                if ($child && '$this' === $child->getImage()) {
137 137
                     $count++;
138 138
                 }
139 139
             }
Please login to merge, or discard this patch.
src/Rule/Naming/CommentDescription.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     }
53 53
 
54 54
     /**
55
-     * @param AbstractNode|ASTClass $node
55
+     * @param AbstractNode $node
56 56
      */
57 57
     private function checkProperties(AbstractNode $node)
58 58
     {
Please login to merge, or discard this patch.
src/Rule/CleanCode/TryStatement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
             $this->addViolation($node);
24 24
         }
25 25
 
26
-        if (1 === $countTry &&  true === $this->hasNotAllowedChildren($node)) {
26
+        if (1 === $countTry && true === $this->hasNotAllowedChildren($node)) {
27 27
             $this->addViolation($node);
28 28
         }
29 29
     }
Please login to merge, or discard this patch.
src/Rule/CleanCode/DataStructureConstants.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     use TestGuesser;
17 17
 
18 18
     /**
19
-     * @param AbstractNode|ClassNode|ASTClass $node
19
+     * @param AbstractNode $node
20 20
      */
21 21
     public function apply(AbstractNode $node)
22 22
     {
Please login to merge, or discard this patch.