@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | */ |
| 184 | 184 | public function customActionsDataProvider(): array |
| 185 | 185 | { |
| 186 | - $setup = function (): object { |
|
| 186 | + $setup = function(): object { |
|
| 187 | 187 | // setup method |
| 188 | 188 | $listBuilder = new ListBuilder($this->getFields(), new FakeAdapter($this->getRecords())); |
| 189 | 189 | |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | return $listBuilder; |
| 193 | 193 | }; |
| 194 | 194 | |
| 195 | - $assert = function ($result): void { |
|
| 195 | + $assert = function($result): void { |
|
| 196 | 196 | // asserting method |
| 197 | 197 | $this->assertStringNotContainsString('!1!', $result); |
| 198 | 198 | $this->assertStringNotContainsString('!2!', $result); |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | // #1, listingForm |
| 209 | 209 | [ |
| 210 | 210 | $setup, |
| 211 | - function ($result): void { |
|
| 211 | + function($result): void { |
|
| 212 | 212 | // asserting method |
| 213 | 213 | $this->assertStringContainsString('!1!', $result); |
| 214 | 214 | $this->assertStringContainsString('!2!', $result); |
@@ -217,7 +217,7 @@ discard block |
||
| 217 | 217 | ], |
| 218 | 218 | // #2, listingForm, no custom buttons |
| 219 | 219 | [ |
| 220 | - function (): object { |
|
| 220 | + function(): object { |
|
| 221 | 221 | // setup method |
| 222 | 222 | $listBuilder = new ListBuilder($this->getFields(), new FakeAdapter($this->getRecords())); |
| 223 | 223 | |