Passed
Push — v2 ( ce3c22...4a6afa )
by Brice
05:02
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/Application/Http/ApiRouting.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
     {
20 20
         return cachedDispatcher(function (RouteCollector $r) {
21 21
 
22
-             $r->get( '/tasks',             ListTasks::class );
22
+                $r->get( '/tasks',             ListTasks::class );
23 23
             $r->post( '/tasks',             AddTask::class   );
24
-             $r->get( '/task/{identifier}', ShowTask::class  );
24
+                $r->get( '/task/{identifier}', ShowTask::class  );
25 25
 
26 26
         }, [
27 27
             'cacheFile' => $dir,
Please login to merge, or discard this patch.
tests/src/Domain/Job/ManagerTest.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 final class ManagerTest extends TestCase
13 13
 {
14 14
     /**
15
-
16 15
      * @var Console
17 16
      */
18 17
     private static $manager;
Please login to merge, or discard this patch.