Completed
Pull Request — master (#15)
by Alex
01:44
created
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/Event/DomainEvent.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,9 +42,9 @@
 block discarded – undo
42 42
     public function __construct($origin, $name, $version, $occurredOn, array $body = [])
43 43
     {
44 44
         $this->setOrigin($origin)
45
-             ->setName($name)
46
-             ->setVersion($version)
47
-             ->setOccurredOn($occurredOn)
45
+                ->setName($name)
46
+                ->setVersion($version)
47
+                ->setOccurredOn($occurredOn)
48 48
         ;
49 49
         $this->body = $body;
50 50
     }
Please login to merge, or discard this patch.
src/Cmp/Queues/Infrastructure/AWS/v20121105/Queue/QueueReader.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@
 block discarded – undo
170 170
                         'Condition' => [
171 171
                                 'ArnEquals' => [
172 172
                                     'aws:SourceArn' => $topicArn,
173
-                           ],
173
+                            ],
174 174
                         ],
175 175
                     ],
176 176
                 ]),
Please login to merge, or discard this patch.