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
Branch master (112110)
by Hong
05:37
created
src/Phossa2/Di/Traits/FactoryTrait.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     /**
44 44
      * Full scope info
45 45
      *
46
-     * @param  sting $id
46
+     * @param  string $id
47 47
      * @return array
48 48
      * @access protected
49 49
      */
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
      *
251 251
      * @param  callable $callable
252 252
      * @param  array $arguments
253
-     * @return array the matched arguments
253
+     * @return callable the matched arguments
254 254
      * @throws LogicException if something goes wrong
255 255
      * @access protected
256 256
      */
@@ -333,7 +333,7 @@  discard block
 block discarded – undo
333 333
     /**
334 334
      * Is $parameter same type as the $argument ?
335 335
      *
336
-     * @param  \ReflectionParameter $parameter
336
+     * @param  \ReflectionParameter $parameters
337 337
      * @param  mixed $argument
338 338
      * @param  null|string $class
339 339
      * @return bool
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
     /**
378 378
      * Is $var an object with '__invoke()' defined
379 379
      *
380
-     * @param  mixed $var
380
+     * @param  callable $var
381 381
      * @return bool
382 382
      * @access protected
383 383
      */
Please login to merge, or discard this patch.
src/Phossa2/Di/Traits/ScopeTrait.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,7 @@
 block discarded – undo
46 46
     public function share(/*# bool */ $shared = true)
47 47
     {
48 48
         $this->default_scope = (bool) $shared ?
49
-            ScopeInterface::SCOPE_SHARED :
50
-            ScopeInterface::SCOPE_SINGLE ;
49
+            ScopeInterface::SCOPE_SHARED : ScopeInterface::SCOPE_SINGLE;
51 50
         return $this;
52 51
     }
53 52
 
Please login to merge, or discard this patch.