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.
Test Failed
Push — master ( adbc2a...6af8e5 )
by Michael
02:42
created
src/Rule/CleanCode/DataStructureConstants.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 class DataStructureConstants extends AbstractDataStructure
14 14
 {
15 15
     /**
16
-     * @param AbstractNode|ClassNode|ASTClass $node
16
+     * @param AbstractNode $node
17 17
      */
18 18
     public function apply(AbstractNode $node)
19 19
     {
Please login to merge, or discard this patch.
src/Rule/CleanCode/DataStructureMethods.php 1 patch
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.
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/Naming/ControllerMethodName.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-     * @param ClassNode|ASTClass $node
41
+     * @param ClassNode $node
42 42
      *
43 43
      * @return bool
44 44
      */
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         /** @var MethodNode $method */
29 29
         foreach ($node->getMethods() as $method) {
30 30
             if (true === in_array($method->getImage(), $allowedMethodNames)) {
31
-              continue;
31
+                continue;
32 32
             }
33 33
 
34 34
             if ('Action' !== substr($method->getImage(), -6, 6)) {
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.