Passed
Push — master ( e315e5...fbd21e )
by Brice
03:28
created
src/Domain/Task/Status.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,9 +5,9 @@
 block discarded – undo
5 5
 final class Status
6 6
 {
7 7
     const WAITING  = 'waiting',
8
-          RUNNING  = 'running',
9
-          FINISHED = 'finished',
10
-          FAILED   = 'failed';
8
+            RUNNING  = 'running',
9
+            FINISHED = 'finished',
10
+            FAILED   = 'failed';
11 11
 
12 12
     /**
13 13
      *
Please login to merge, or discard this patch.
src/Domain/Task/Task.php 1 patch
Indentation   -2 removed lines patch added patch discarded remove patch
@@ -37,13 +37,11 @@
 block discarded – undo
37 37
     private $createdAt;
38 38
 
39 39
     /**
40
-
41 40
      * @var ParameterBag
42 41
      */
43 42
     private $parameters;
44 43
 
45 44
     /**
46
-
47 45
      * @var TagBag
48 46
      */
49 47
     private $tags;
Please login to merge, or discard this patch.
tests/src/Application/ManagerTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 final class ManagerTest extends TestCase
16 16
 {
17 17
     /**
18
- * @var ManagerApplication
18
+     * @var ManagerApplication
19 19
      */
20 20
     private static $manager;
21 21
 
Please login to merge, or discard this patch.