Completed
Push — master ( 8550db...eaf0c6 )
by Rémi
13s
created
src/Command/TransactionalCommandBus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
      */
110 110
     private function checkTransactionIsRunning()
111 111
     {
112
-        if (! $this->isTransactionRunning()) {
112
+        if (!$this->isTransactionRunning()) {
113 113
             throw new NoRunningTransactionException();
114 114
         }
115 115
     }
Please login to merge, or discard this patch.
src/Event/TransactionalEmitter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
 
83 83
         if (!$event instanceof EventInterface) {
84 84
             throw new \InvalidArgumentException(
85
-                'Events should be provides as Event instances or string, received type: ' . gettype($event)
85
+                'Events should be provides as Event instances or string, received type: '.gettype($event)
86 86
             );
87 87
         }
88 88
 
Please login to merge, or discard this patch.