Passed
Push — master ( 348a77...80c788 )
by Luiz Kim
22:43 queued 20:36
created
src/Command/LogisticCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
           'receiver' => $order->getClient() ? $order->getClient()->getName() : null,
155 155
           'subject'  => 'Create logistic order',
156 156
           'notifier' => [
157
-            'send' => function () use ($order) {
157
+            'send' => function() use ($order) {
158 158
               try {
159 159
                 return true;
160 160
               } catch (\Exception $e) {
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
             },
164 164
           ],
165 165
           'events'   => [
166
-            'onError' => function () use ($order, $logistic) {
166
+            'onError' => function() use ($order, $logistic) {
167 167
             },
168
-            'onSuccess' => function () use ($order, $logistic) {
168
+            'onSuccess' => function() use ($order, $logistic) {
169 169
               try {
170 170
 
171 171
                 $logisticOrder = clone $order;
Please login to merge, or discard this patch.