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
Branch master (62b7e7)
by Michael
02:59
created
src/State/CreatesWithName.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@
 block discarded – undo
4 4
 
5 5
 interface CreatesWithName
6 6
 {
7
-     /**
8
-     * Creates and returns a state with the given name
9
-     *
10
-     * @param string $name
11
-     *
12
-     * @return State
13
-     */
7
+        /**
8
+         * Creates and returns a state with the given name
9
+         *
10
+         * @param string $name
11
+         *
12
+         * @return State
13
+         */
14 14
     public static function named(string $name) : State;
15 15
 }
Please login to merge, or discard this patch.
src/State/FlyweightState.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     private $name;
23 23
 
24
-   /**
24
+    /**
25 25
      * Instances of states created by the FlyweightState factory method
26 26
      *
27 27
      * @var State[]
Please login to merge, or discard this patch.
src/Transition/Table/TransitionTable.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -7,14 +7,14 @@
 block discarded – undo
7 7
 
8 8
 interface TransitionTable
9 9
 {
10
-     /**
11
-     * Returns the state that would result from applying the provided input
12
-     * to an object with the provided current state.
13
-     *
14
-     * @param State $currentState
15
-     * @param Input $input
16
-     *
17
-     * @return State
18
-     */
10
+        /**
11
+         * Returns the state that would result from applying the provided input
12
+         * to an object with the provided current state.
13
+         *
14
+         * @param State $currentState
15
+         * @param Input $input
16
+         *
17
+         * @return State
18
+         */
19 19
     public function resolve(State $currentState, Input $input) : State;
20 20
 }
Please login to merge, or discard this patch.
src/Statemachine/Exception/StateTransitionFailed.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 namespace Noodle\Statemachine\Exception;
6 6
 
7 7
 use Noodle\State\State;
8
-use Noodle\Statemachine\Exception;
9 8
 use Noodle\Stateful\Stateful;
9
+use Noodle\Statemachine\Exception;
10 10
 use Noodle\Transition\Context;
11 11
 use Noodle\Transition\Input\Input;
12 12
 
Please login to merge, or discard this patch.
src/Transition/Table/DefaultTransitionTable.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
      * Constructor
21 21
      *
22 22
      * @param \Noodle\Transition\Transition[] ...$transitions
23
+     * @param Transition $transitions
23 24
      */
24 25
     public function __construct(Transition ...$transitions)
25 26
     {
Please login to merge, or discard this patch.