Test Failed
Push — 1.0.x ( aac4e2...96ee5e )
by Koldo
07:01 queued 04:32
created
src/Infrastructure/Repository/DbalAggregateRootRepository.php 5 patches
Indentation   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -59,7 +59,4 @@
 block discarded – undo
59 59
                 'payload' => json_encode($event->payload(), JSON_THROW_ON_ERROR),
60 60
                 'occurred_on' => $event->occurredOn()->format('Y-m-d H:i:s'),
61 61
             ]);
62
-            DomainEventEmitter::recordThat($event);
63
-        }
64
-    }
65
-}
62
+            DomainEventEmitter::recordThat($event
66 63
\ No newline at end of file
Please login to merge, or discard this patch.
Switch Indentation   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -59,7 +59,4 @@
 block discarded – undo
59 59
                 'payload' => json_encode($event->payload(), JSON_THROW_ON_ERROR),
60 60
                 'occurred_on' => $event->occurredOn()->format('Y-m-d H:i:s'),
61 61
             ]);
62
-            DomainEventEmitter::recordThat($event);
63
-        }
64
-    }
65
-}
62
+            DomainEventEmitter::recordThat($event
66 63
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -59,7 +59,4 @@
 block discarded – undo
59 59
                 'payload' => json_encode($event->payload(), JSON_THROW_ON_ERROR),
60 60
                 'occurred_on' => $event->occurredOn()->format('Y-m-d H:i:s'),
61 61
             ]);
62
-            DomainEventEmitter::recordThat($event);
63
-        }
64
-    }
65
-}
62
+            DomainEventEmitter::recordThat($event
66 63
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -59,7 +59,4 @@
 block discarded – undo
59 59
                 'payload' => json_encode($event->payload(), JSON_THROW_ON_ERROR),
60 60
                 'occurred_on' => $event->occurredOn()->format('Y-m-d H:i:s'),
61 61
             ]);
62
-            DomainEventEmitter::recordThat($event);
63
-        }
64
-    }
65
-}
62
+            DomainEventEmitter::recordThat($event
66 63
\ No newline at end of file
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -59,7 +59,4 @@
 block discarded – undo
59 59
                 'payload' => json_encode($event->payload(), JSON_THROW_ON_ERROR),
60 60
                 'occurred_on' => $event->occurredOn()->format('Y-m-d H:i:s'),
61 61
             ]);
62
-            DomainEventEmitter::recordThat($event);
63
-        }
64
-    }
65
-}
62
+            DomainEventEmitter::recordThat($event
66 63
\ No newline at end of file
Please login to merge, or discard this patch.
src/Domain/Event/AggregateChanged.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 abstract class AggregateChanged implements StoppableEventInterface, JsonSerializable
14 14
 {
15 15
     protected const DATE_FORMAT = 'Y-m-d H:i:s';
16
-    protected const PROPERTIES =[
16
+    protected const PROPERTIES = [
17 17
         'aggregate_id',
18 18
         'payload',
19 19
         'occurred_on',
Please login to merge, or discard this patch.