@@ -34,7 +34,7 @@ |
||
34 | 34 | */ |
35 | 35 | protected function formHeader(bool $flag) |
36 | 36 | { |
37 | - if (! $flag) { |
|
37 | + if (!$flag) { |
|
38 | 38 | $_GET['no-header'] = 1; |
39 | 39 | } else { |
40 | 40 | unset($_GET['no-header']); |
@@ -227,7 +227,7 @@ |
||
227 | 227 | */ |
228 | 228 | public function fetchCustomField(array &$record, string $name): array |
229 | 229 | { |
230 | - if (! isset($this->fieldObjects[$name])) { |
|
230 | + if (!isset($this->fieldObjects[$name])) { |
|
231 | 231 | return $record; |
232 | 232 | } |
233 | 233 |
@@ -24,7 +24,7 @@ |
||
24 | 24 | */ |
25 | 25 | public function html(): string |
26 | 26 | { |
27 | - $content = '<textarea class="resizable_textarea '.$this->class.'"'; |
|
27 | + $content = '<textarea class="resizable_textarea ' . $this->class . '"'; |
|
28 | 28 | $content .= $this->required ? ' required="required"' : ''; |
29 | 29 | $content .= ' type="text" name="' . $this->getNamePrefix() . $this->name . |
30 | 30 | ($this->batch ? '[{_creation_form_items_counter}]' : '') . '"'; |
@@ -24,7 +24,7 @@ |
||
24 | 24 | */ |
25 | 25 | public function html(): string |
26 | 26 | { |
27 | - $content = '<input class="'.$this->class.'"'; |
|
27 | + $content = '<input class="' . $this->class . '"'; |
|
28 | 28 | $content .= $this->required ? ' required="required"' : ''; |
29 | 29 | $content .= ' type="text" name="' . $this->getNamePrefix() . $this->name . |
30 | 30 | ($this->batch ? '[{_creation_form_items_counter}]' : '') . '"'; |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | 'order' => 'ASC' |
331 | 331 | ], isset($_GET['from']) ? $_GET['from'] : 0, isset($_GET['limit']) ? $_GET['limit'] : 100); |
332 | 332 | |
333 | - if (! empty($records)) { |
|
333 | + if (!empty($records)) { |
|
334 | 334 | $header = $this->listingHeader(); |
335 | 335 | |
336 | 336 | $items = $this->listingItems($records); |
@@ -352,7 +352,7 @@ discard block |
||
352 | 352 | { |
353 | 353 | $records = $this->listBuilderAdapter->all(); |
354 | 354 | |
355 | - if (! empty($records)) { |
|
355 | + if (!empty($records)) { |
|
356 | 356 | $header = $this->simpleListingHeader(); |
357 | 357 | |
358 | 358 | $items = $this->simpleListingItems($records); |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | */ |
176 | 176 | public function customActionsDataProvider(): array |
177 | 177 | { |
178 | - $setup = function (): object { |
|
178 | + $setup = function(): object { |
|
179 | 179 | // setup method |
180 | 180 | $listBuilder = new ListBuilder($this->getFields(), new FakeAdapter($this->getRecords())); |
181 | 181 | |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | return $listBuilder; |
185 | 185 | }; |
186 | 186 | |
187 | - $assert = function ($result): void { |
|
187 | + $assert = function($result): void { |
|
188 | 188 | // asserting method |
189 | 189 | $this->assertStringNotContainsString('!1!', $result); |
190 | 190 | $this->assertStringNotContainsString('!2!', $result); |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | // #1, listingForm |
201 | 201 | [ |
202 | 202 | $setup, |
203 | - function ($result): void { |
|
203 | + function($result): void { |
|
204 | 204 | // asserting method |
205 | 205 | $this->assertStringContainsString('!1!', $result); |
206 | 206 | $this->assertStringContainsString('!2!', $result); |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | ], |
210 | 210 | // #2, listingForm, no custom buttons |
211 | 211 | [ |
212 | - function (): object { |
|
212 | + function(): object { |
|
213 | 213 | // setup method |
214 | 214 | return new ListBuilder($this->getFields(), new FakeAdapter($this->getRecords())); |
215 | 215 | }, |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | ], |
219 | 219 | // #3, listingForm, no custom buttons |
220 | 220 | [ |
221 | - function (): object { |
|
221 | + function(): object { |
|
222 | 222 | // setup method |
223 | 223 | return new ListBuilder([ |
224 | 224 | 'id' => [ |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | ], |
232 | 232 | // #4, listingForm, no custom buttons |
233 | 233 | [ |
234 | - function (): object { |
|
234 | + function(): object { |
|
235 | 235 | // setup method |
236 | 236 | return new ListBuilder([ |
237 | 237 | 'id' => [ |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | ] |
240 | 240 | ], new FakeAdapter($this->getRecords())); |
241 | 241 | }, |
242 | - function (string $result) use ($assert) { |
|
242 | + function(string $result) use ($assert) { |
|
243 | 243 | $assert($result); |
244 | 244 | |
245 | 245 | $this->assertStringContainsString('Some id field', $result); |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | ], |
251 | 251 | // #5, simpleListingForm, no custom buttons |
252 | 252 | [ |
253 | - function (): object { |
|
253 | + function(): object { |
|
254 | 254 | // setup method |
255 | 255 | return new ListBuilder([ |
256 | 256 | 'title' => [ |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | ] |
259 | 259 | ], new FakeAdapter($this->getRecords())); |
260 | 260 | }, |
261 | - function (string $result) use ($assert) { |
|
261 | + function(string $result) use ($assert) { |
|
262 | 262 | $assert($result); |
263 | 263 | |
264 | 264 | $this->assertStringContainsString('Title field', $result); |
@@ -267,13 +267,13 @@ discard block |
||
267 | 267 | ], |
268 | 268 | // #6, listingForm, default buttons |
269 | 269 | [ |
270 | - function (): object { |
|
270 | + function(): object { |
|
271 | 271 | // setup method |
272 | 272 | $_GET['update-button'] = 1; |
273 | 273 | $_GET['create-button'] = 1; |
274 | 274 | return new ListBuilder($this->getFields(), new FakeAdapter($this->getRecords())); |
275 | 275 | }, |
276 | - function (string $result) use ($assert) { |
|
276 | + function(string $result) use ($assert) { |
|
277 | 277 | $assert($result); |
278 | 278 | |
279 | 279 | $this->assertStringContainsString('>id<', $result); |
@@ -200,7 +200,7 @@ |
||
200 | 200 | { |
201 | 201 | $records = $this->listBuilderAdapter->all(); |
202 | 202 | |
203 | - if (! empty($records)) { |
|
203 | + if (!empty($records)) { |
|
204 | 204 | $header = $this->simpleListingHeader(); |
205 | 205 | |
206 | 206 | $items = $this->simpleListingItems($records); |
@@ -309,7 +309,7 @@ |
||
309 | 309 | 'order' => 'ASC' |
310 | 310 | ], isset($_GET['from']) ? $_GET['from'] : 0, isset($_GET['limit']) ? $_GET['limit'] : 100); |
311 | 311 | |
312 | - if (! empty($records)) { |
|
312 | + if (!empty($records)) { |
|
313 | 313 | $header = $this->listingHeader(); |
314 | 314 | |
315 | 315 | $items = $this->listingItems($records); |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | */ |
163 | 163 | public function commonBehaviourDataProvider(): array |
164 | 164 | { |
165 | - $setup = function (): object { |
|
165 | + $setup = function(): object { |
|
166 | 166 | // setup method |
167 | 167 | $listBuilder = new CommonListBuilder($this->getFields(), new FakeAdapter($this->getRecords())); |
168 | 168 | |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | return $listBuilder; |
172 | 172 | }; |
173 | 173 | |
174 | - $assert = function ($result): void { |
|
174 | + $assert = function($result): void { |
|
175 | 175 | // asserting method |
176 | 176 | $this->assertStringNotContainsString('!1!', $result); |
177 | 177 | $this->assertStringNotContainsString('!2!', $result); |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | // #0, listingForm |
188 | 188 | [ |
189 | 189 | $setup, |
190 | - function ($result): void { |
|
190 | + function($result): void { |
|
191 | 191 | // asserting method |
192 | 192 | $this->assertStringContainsStrings([ |
193 | 193 | '!1!', |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | ], |
198 | 198 | // #1, listingForm, no custom buttons |
199 | 199 | [ |
200 | - function (): object { |
|
200 | + function(): object { |
|
201 | 201 | // setup method |
202 | 202 | return new CommonListBuilder($this->getFields(), new FakeAdapter($this->getRecords())); |
203 | 203 | }, |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | ], |
206 | 206 | // #2, listingForm, no custom buttons |
207 | 207 | [ |
208 | - function () use ($headerData): object { |
|
208 | + function() use ($headerData): object { |
|
209 | 209 | // setup method |
210 | 210 | return new CommonListBuilder($headerData, new FakeAdapter($this->getRecords())); |
211 | 211 | }, |
@@ -213,11 +213,11 @@ discard block |
||
213 | 213 | ], |
214 | 214 | // #3, listingForm, no custom buttons |
215 | 215 | [ |
216 | - function () use ($headerData): object { |
|
216 | + function() use ($headerData): object { |
|
217 | 217 | // setup method |
218 | 218 | return new CommonListBuilder($headerData, new FakeAdapter($this->getRecords())); |
219 | 219 | }, |
220 | - function (string $result) use ($assert) { |
|
220 | + function(string $result) use ($assert) { |
|
221 | 221 | $assert($result); |
222 | 222 | |
223 | 223 | $this->assertStringContainsStrings([ |
@@ -229,13 +229,13 @@ discard block |
||
229 | 229 | ], |
230 | 230 | // #4, listingForm, default buttons |
231 | 231 | [ |
232 | - function (): object { |
|
232 | + function(): object { |
|
233 | 233 | // setup method |
234 | 234 | $_GET['update-button'] = 1; |
235 | 235 | $_GET['create-button'] = 1; |
236 | 236 | return new CommonListBuilder($this->getFields(), new FakeAdapter($this->getRecords())); |
237 | 237 | }, |
238 | - function (string $result) use ($assert) { |
|
238 | + function(string $result) use ($assert) { |
|
239 | 239 | $assert($result); |
240 | 240 | |
241 | 241 | $this->assertStringContainsStrings([ |
@@ -247,14 +247,14 @@ discard block |
||
247 | 247 | ], |
248 | 248 | // #5, listingForm, custom title and description |
249 | 249 | [ |
250 | - function (): object { |
|
250 | + function(): object { |
|
251 | 251 | // setup method |
252 | 252 | $listBuilder = new CommonListBuilder($this->getFields(), new FakeAdapter($this->getRecords())); |
253 | 253 | $listBuilder->listTitle = 'List Title'; |
254 | 254 | $listBuilder->listDescription = 'List Description'; |
255 | 255 | return $listBuilder; |
256 | 256 | }, |
257 | - function (string $result) use ($assert) { |
|
257 | + function(string $result) use ($assert) { |
|
258 | 258 | $assert($result); |
259 | 259 | |
260 | 260 | $this->assertStringContainsStrings([ |
@@ -268,11 +268,11 @@ discard block |
||
268 | 268 | ], |
269 | 269 | // #6, listingForm, default title and description |
270 | 270 | [ |
271 | - function (): object { |
|
271 | + function(): object { |
|
272 | 272 | // setup method |
273 | 273 | return new CommonListBuilder($this->getFields(), new FakeAdapter($this->getRecords())); |
274 | 274 | }, |
275 | - function (string $result) use ($assert) { |
|
275 | + function(string $result) use ($assert) { |
|
276 | 276 | $assert($result); |
277 | 277 | |
278 | 278 | $this->assertStringContainsStrings( |