Completed
Push — develop ( b92fd0...28494b )
by
unknown
23:27 queued 12:02
created
module/Orders/src/Form/InvoiceAddressFieldset.php 1 patch
Indentation   +73 added lines, -73 removed lines patch added patch discarded remove patch
@@ -27,78 +27,78 @@  discard block
 block discarded – undo
27 27
         $this->setName('invoiceAddress');
28 28
 
29 29
         $this->add([
30
-                       'type'       => 'text',
31
-                       'name'       => 'company',
32
-                       'options'    => [
33
-                           'label'       => /*@translate*/
34
-                               'Company',
35
-                           'description' => /*@translate*/
36
-                               'Enter the name of the company',
37
-                       ],
38
-                       'attributes' => [
39
-                           'required' => true, // marks the label as required.
40
-                       ]
41
-                   ]
30
+                        'type'       => 'text',
31
+                        'name'       => 'company',
32
+                        'options'    => [
33
+                            'label'       => /*@translate*/
34
+                                'Company',
35
+                            'description' => /*@translate*/
36
+                                'Enter the name of the company',
37
+                        ],
38
+                        'attributes' => [
39
+                            'required' => true, // marks the label as required.
40
+                        ]
41
+                    ]
42 42
         );
43 43
 
44 44
         $this->add([
45
-                       'type'    => 'text',
46
-                       'name'    => 'street',
47
-                       'options' => [
48
-                           'label' => /*@translate*/
49
-                               'Street',
50
-                       ],
51
-                   ]
45
+                        'type'    => 'text',
46
+                        'name'    => 'street',
47
+                        'options' => [
48
+                            'label' => /*@translate*/
49
+                                'Street',
50
+                        ],
51
+                    ]
52 52
         );
53 53
 
54 54
         $this->add([
55
-                       'type'    => 'text',
56
-                       'name'    => 'zipCode',
57
-                       'options' => [
58
-                           'label' => /* @translate */
59
-                               'Postalcode'
60
-                       ],
61
-                   ]
55
+                        'type'    => 'text',
56
+                        'name'    => 'zipCode',
57
+                        'options' => [
58
+                            'label' => /* @translate */
59
+                                'Postalcode'
60
+                        ],
61
+                    ]
62 62
         );
63 63
 
64 64
         $this->add([
65
-                       'type'    => 'text',
66
-                       'name'    => 'city',
67
-                       'options' => [
68
-                           'label' => /*@translate*/
69
-                               'City',
70
-                       ],
71
-                   ]
65
+                        'type'    => 'text',
66
+                        'name'    => 'city',
67
+                        'options' => [
68
+                            'label' => /*@translate*/
69
+                                'City',
70
+                        ],
71
+                    ]
72 72
         );
73 73
 
74 74
         $this->add([
75
-                       'type'    => 'text',
76
-                       'name'    => 'region',
77
-                       'options' => [
78
-                           'label' => /*@translate*/
79
-                               'Region',
80
-                       ],
81
-                   ]
75
+                        'type'    => 'text',
76
+                        'name'    => 'region',
77
+                        'options' => [
78
+                            'label' => /*@translate*/
79
+                                'Region',
80
+                        ],
81
+                    ]
82 82
         );
83 83
 
84 84
         $this->add([
85
-                       'type'    => 'text',
86
-                       'name'    => 'country',
87
-                       'options' => [
88
-                           'label' => /*@translate*/
89
-                               'Country',
90
-                       ],
91
-                   ]
85
+                        'type'    => 'text',
86
+                        'name'    => 'country',
87
+                        'options' => [
88
+                            'label' => /*@translate*/
89
+                                'Country',
90
+                        ],
91
+                    ]
92 92
         );
93 93
 
94 94
         $this->add([
95
-                       'type'    => 'text',
96
-                       'name'    => 'vatIdNumber',
97
-                       'options' => [
98
-                           'label' => /*@translate*/
99
-                               'Value added tax ID',
100
-                       ],
101
-                   ]
95
+                        'type'    => 'text',
96
+                        'name'    => 'vatIdNumber',
97
+                        'options' => [
98
+                            'label' => /*@translate*/
99
+                                'Value added tax ID',
100
+                        ],
101
+                    ]
102 102
         );
103 103
         $this->add(
104 104
             array(
@@ -133,28 +133,28 @@  discard block
 block discarded – undo
133 133
 //        );
134 134
 
135 135
         $this->add([
136
-                       'type'    => 'text',
137
-                       'name'    => 'name',
138
-                       'options' => [
139
-                           'label'       => /*@translate*/
140
-                               'Full name',
141
-                           'description' => /*@translate*/
142
-                               'Enter your full name (First, middle and last name)',
143
-                       ],
144
-                   ]
136
+                        'type'    => 'text',
137
+                        'name'    => 'name',
138
+                        'options' => [
139
+                            'label'       => /*@translate*/
140
+                                'Full name',
141
+                            'description' => /*@translate*/
142
+                                'Enter your full name (First, middle and last name)',
143
+                        ],
144
+                    ]
145 145
         );
146 146
 
147 147
         $this->add([
148
-                       'type'       => 'text',
149
-                       'name'       => 'email',
150
-                       'options'    => [
151
-                           'label' => /*@translate*/
152
-                               'Email address',
153
-                       ],
154
-                       'attributes' => [
155
-                           'required' => true, // marks the label as required.
156
-                       ]
157
-                   ]
148
+                        'type'       => 'text',
149
+                        'name'       => 'email',
150
+                        'options'    => [
151
+                            'label' => /*@translate*/
152
+                                'Email address',
153
+                        ],
154
+                        'attributes' => [
155
+                            'required' => true, // marks the label as required.
156
+                        ]
157
+                    ]
158 158
         );
159 159
     }
160 160
 
Please login to merge, or discard this patch.