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.
Completed
Push — php-7-compatible ( c15b0b...a0f3f9 )
by Rolf
02:54
created
src/statemachine/persistence/PDO.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 use izzum\statemachine\StateMachine;
5 5
 use izzum\statemachine\Identifier;
6 6
 use izzum\statemachine\loader\LoaderArray;
7
-use izzum\statemachine\loader\LoaderData;
8 7
 use izzum\statemachine\Exception;
9 8
 use izzum\statemachine\Transition;
10 9
 use izzum\statemachine\State;
Please login to merge, or discard this patch.
src/statemachine/State.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 use izzum\command\ICommand;
4 4
 use izzum\command\Null;
5 5
 use izzum\statemachine\Exception;
6
-use izzum\command\Composite;
7 6
 use izzum\statemachine\utils\Utils;
8 7
 
9 8
 /**
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -337,7 +337,7 @@
 block discarded – undo
337 337
      * run from ('state from').
338 338
      *
339 339
      * @param Transition $transition            
340
-     * @return boolan yes in case the transition was not on the State already or in case of an invalid transition
340
+     * @return boolean yes in case the transition was not on the State already or in case of an invalid transition
341 341
      */
342 342
     public function addTransition(Transition $transition)
343 343
     {
Please login to merge, or discard this patch.
src/rules/Rule.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -261,6 +261,9 @@
 block discarded – undo
261 261
         $this->cache = null;
262 262
     }
263 263
 
264
+    /**
265
+     * @param boolean $result
266
+     */
264 267
     private function setCache($result)
265 268
     {
266 269
         if ($this->getCacheEnabled()) {
Please login to merge, or discard this patch.
src/statemachine/Transition.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -356,6 +356,9 @@  discard block
 block discarded – undo
356 356
         return $this->command;
357 357
     }
358 358
 
359
+    /**
360
+     * @param string $command
361
+     */
359 362
     public function setCommandName($command)
360 363
     {
361 364
         $this->command = trim($command);
@@ -367,6 +370,9 @@  discard block
 block discarded – undo
367 370
         return $this->rule;
368 371
     }
369 372
 
373
+    /**
374
+     * @param string $rule
375
+     */
370 376
     public function setRuleName($rule)
371 377
     {
372 378
         $this->rule = trim($rule);
Please login to merge, or discard this patch.