We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | 'fields' => [ |
| 32 | 32 | 'myField' => [ |
| 33 | 33 | 'type' => Type::boolean(), |
| 34 | - 'resolve' => function () { |
|
| 34 | + 'resolve' => function() { |
|
| 35 | 35 | return false; |
| 36 | 36 | }, |
| 37 | 37 | ], |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | */ |
| 47 | 47 | public function testInvalidExecutorReturnNotObject() |
| 48 | 48 | { |
| 49 | - $this->executor->setExecutor(function () { |
|
| 49 | + $this->executor->setExecutor(function() { |
|
| 50 | 50 | return false; |
| 51 | 51 | }); |
| 52 | 52 | $this->executor->execute($this->request); |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | */ |
| 59 | 59 | public function testInvalidExecutorReturnInvalidObject() |
| 60 | 60 | { |
| 61 | - $this->executor->setExecutor(function () { |
|
| 61 | + $this->executor->setExecutor(function() { |
|
| 62 | 62 | return new \stdClass(); |
| 63 | 63 | }); |
| 64 | 64 | $this->executor->execute($this->request); |