Completed
Push — master ( ba6b6b...9b3e23 )
by Hilari
12s
created
src/Cmp/Queues/Domain/Event/DomainEvent.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@
 block discarded – undo
36 36
     public function __construct($origin, $name, $occurredOn, array $body = [])
37 37
     {
38 38
         $this->setOrigin($origin)
39
-             ->setName($name)
40
-             ->setOccurredOn($occurredOn)
39
+                ->setName($name)
40
+                ->setOccurredOn($occurredOn)
41 41
         ;
42 42
         $this->body = $body;
43 43
     }
Please login to merge, or discard this patch.
src/Cmp/Queues/Domain/Task/Task.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     public function __construct($name, array $body, $delay=0)
32 32
     {
33 33
         $this->setName($name)
34
-             ->setDelay($delay)
34
+                ->setDelay($delay)
35 35
         ;
36 36
         $this->body = $body;
37 37
     }
Please login to merge, or discard this patch.
src/Cmp/Queues/Domain/Task/JSONTaskFactory.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
             throw new InvalidJSONTaskException("Cannot reconstruct task. Name or body fields are missing");
28 28
         }
29 29
 
30
-       return new Task($taskArray['name'], $taskArray['body'], isset($taskArray['delay']) ? $taskArray['delay'] : 0);
30
+        return new Task($taskArray['name'], $taskArray['body'], isset($taskArray['delay']) ? $taskArray['delay'] : 0);
31 31
     }
32 32
 }
33 33
\ No newline at end of file
Please login to merge, or discard this patch.