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
Branch master (69a3ac)
by Markus
05:16
created
src/DependencyGraph.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,8 +129,8 @@
 block discarded – undo
129 129
      * Inner recursive function.
130 130
      *
131 131
      * @param DependencyNode $rootNode
132
-     * @param ArrayObject|DependencyNode[] $resolved
133
-     * @param ArrayObject|DependencyNode[]  $seen
132
+     * @param ArrayObject $resolved
133
+     * @param ArrayObject  $seen
134 134
      * @return ArrayObject|DependencyNode[]
135 135
      * @throws \Exception
136 136
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
             throw new CircularDependencyException();
119 119
         }
120 120
 
121
-        $resolvedElements = array_map(function (DependencyNode $node) {
121
+        $resolvedElements = array_map(function(DependencyNode $node) {
122 122
             return $node->getElement();
123 123
         }, $resolved->getArrayCopy());
124 124
 
Please login to merge, or discard this patch.
src/Tests/DependencyGraphTest.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -187,12 +187,12 @@
 block discarded – undo
187 187
         $graph->resolve();
188 188
     }
189 189
 
190
-	/**
191
-	 * Tests whether a circular dependency is detected for a->b b->a.
192
-	 *
193
-	 * @expectedException Digilist\DependencyGraph\CircularDependencyException
194
-	 * @test
195
-	 */
190
+    /**
191
+     * Tests whether a circular dependency is detected for a->b b->a.
192
+     *
193
+     * @expectedException Digilist\DependencyGraph\CircularDependencyException
194
+     * @test
195
+     */
196 196
     public function testCircularDependencyException2()
197 197
     {
198 198
         $graph = new DependencyGraph();
Please login to merge, or discard this patch.