Completed
Push — develop ( b92fd0...28494b )
by
unknown
23:27 queued 12:02
created
module/Orders/config/module.config.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,17 +20,17 @@  discard block
 block discarded – undo
20 20
 
21 21
     'event_manager' => [
22 22
 
23
-        'Jobs/Events' => [ 'listeners' => [
23
+        'Jobs/Events' => ['listeners' => [
24 24
             \Jobs\Listener\Events\JobEvent::EVENT_JOB_CREATED => [
25 25
                 'Orders/Listener/CreateJobOrder' => true,
26 26
             ],
27 27
         ]],
28 28
 
29
-        'Jobs/JobContainer/Events' => [ 'listeners' => [
29
+        'Jobs/JobContainer/Events' => ['listeners' => [
30 30
             \Core\Form\Event\FormEvent::EVENT_INIT => [
31 31
                 'Orders\Form\Listener\InjectInvoiceAddressInJobContainer',
32 32
             ],
33
-            'ValidateJob' => [ '\Orders\Form\Listener\ValidateJobInvoiceAddress' ],
33
+            'ValidateJob' => ['\Orders\Form\Listener\ValidateJobInvoiceAddress'],
34 34
         ]],
35 35
 
36 36
         'Orders/Form/InvoiceAddress/Events' => [
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     'view_helper_config' => [
62 62
         'headscript' => [
63 63
             'lang/orders' => [
64
-                [ \Zend\View\Helper\HeadScript::FILE, 'Orders/js/list.index.js', 'PREPEND' ],
64
+                [\Zend\View\Helper\HeadScript::FILE, 'Orders/js/list.index.js', 'PREPEND'],
65 65
                 'js/bootstrap-dialog.min.js'
66 66
             ],
67 67
         ],
Please login to merge, or discard this patch.
module/Orders/src/Listener/CreateJobOrder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
         $this->priceFilter     = $priceFilter;
63 63
         $this->options         = $options;
64 64
         $this->providerOptions = $providerOptions;
65
-        $this->orderRepository      = $orderRepository;
65
+        $this->orderRepository = $orderRepository;
66 66
         $this->draftRepository = $draftRepository;
67 67
     }
68 68
 
Please login to merge, or discard this patch.
module/Orders/src/Form/InvoiceAddress.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,8 +53,8 @@  discard block
 block discarded – undo
53 53
     {
54 54
         parent::setParam($key, $value);
55 55
 
56
-        $events  = $this->getEventManager();
57
-        $events->trigger(FormEvent::EVENT_SET_PARAM, $this, [ 'param_name' => $key, 'param_value' => $value ]);
56
+        $events = $this->getEventManager();
57
+        $events->trigger(FormEvent::EVENT_SET_PARAM, $this, ['param_name' => $key, 'param_value' => $value]);
58 58
 
59 59
         return $this;
60 60
     }
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         $valid = parent::isValid();
66 66
 
67 67
         $events = $this->getEventManager();
68
-        $events->trigger(FormEvent::EVENT_VALIDATE, $this, [ 'isValid' => $valid ]);
68
+        $events->trigger(FormEvent::EVENT_VALIDATE, $this, ['isValid' => $valid]);
69 69
 
70 70
         return $valid;
71 71
     }
Please login to merge, or discard this patch.