@@ -32,7 +32,7 @@ |
||
| 32 | 32 | $this->contentDecoderMock |
| 33 | 33 | ->expects($this->any()) |
| 34 | 34 | ->method('decodeContent') |
| 35 | - ->willReturnCallback(function (Request $request) { |
|
| 35 | + ->willReturnCallback(function(Request $request) { |
|
| 36 | 36 | return json_decode($request->getContent()); |
| 37 | 37 | }); |
| 38 | 38 | } |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | $jsonEncoderMock |
| 45 | 45 | ->expects($this->once()) |
| 46 | 46 | ->method('encode') |
| 47 | - ->willReturnCallback(function ($string) { |
|
| 47 | + ->willReturnCallback(function($string) { |
|
| 48 | 48 | $data = json_encode($string); |
| 49 | 49 | if (is_null($data)) { |
| 50 | 50 | throw new \Exception(); |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | $jsonEncoderMock |
| 45 | 45 | ->expects($this->once()) |
| 46 | 46 | ->method('encode') |
| 47 | - ->willReturnCallback(function ($string) { |
|
| 47 | + ->willReturnCallback(function($string) { |
|
| 48 | 48 | $data = json_encode($string); |
| 49 | 49 | if (is_null($data)) { |
| 50 | 50 | throw new \Exception(); |
@@ -203,7 +203,7 @@ |
||
| 203 | 203 | $logger |
| 204 | 204 | ->expects($this->once()) |
| 205 | 205 | ->method('log') |
| 206 | - ->with($this->anything(), $this->callback(function ($message) use (&$logref) { |
|
| 206 | + ->with($this->anything(), $this->callback(function($message) use (&$logref) { |
|
| 207 | 207 | $matches = []; |
| 208 | 208 | if (preg_match('/logref ([a-z0-9]*)/', $message, $matches)) { |
| 209 | 209 | $logref = $matches[1]; |
@@ -48,7 +48,7 @@ |
||
| 48 | 48 | 'header' => 'headers' |
| 49 | 49 | ]; |
| 50 | 50 | |
| 51 | - if(isset($operationObject->getDefinition()->parameters)) { |
|
| 51 | + if (isset($operationObject->getDefinition()->parameters)) { |
|
| 52 | 52 | foreach ($operationObject->getDefinition()->parameters as $paramDefinition) { |
| 53 | 53 | $paramName = $paramDefinition->name; |
| 54 | 54 | |
@@ -91,7 +91,7 @@ |
||
| 91 | 91 | |
| 92 | 92 | $parameters = new \stdClass; |
| 93 | 93 | |
| 94 | - if(isset($this->operationObject->getDefinition()->parameters)) { |
|
| 94 | + if (isset($this->operationObject->getDefinition()->parameters)) { |
|
| 95 | 95 | foreach ($this->operationObject->getDefinition()->parameters as $paramDefinition) { |
| 96 | 96 | $paramName = $paramDefinition->name; |
| 97 | 97 | |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | ->arrayNode('namespace') |
| 38 | 38 | ->beforeNormalization() |
| 39 | 39 | ->ifString() |
| 40 | - ->then(function ($v) { return [$v]; }) |
|
| 40 | + ->then(function($v) { return [$v]; }) |
|
| 41 | 41 | ->end() |
| 42 | 42 | ->prototype('scalar') |
| 43 | 43 | ->end() |
@@ -197,7 +197,7 @@ |
||
| 197 | 197 | { |
| 198 | 198 | $exception = new ResourceNotReadableException("Failed reading '$uri'"); |
| 199 | 199 | |
| 200 | - set_error_handler(function () use ($exception) { |
|
| 200 | + set_error_handler(function() use ($exception) { |
|
| 201 | 201 | throw $exception; |
| 202 | 202 | }); |
| 203 | 203 | $response = file_get_contents($uri); |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | */ |
| 22 | 22 | public function __construct($resourceNamespaces = null) |
| 23 | 23 | { |
| 24 | - if(!is_array($resourceNamespaces)) { |
|
| 24 | + if (!is_array($resourceNamespaces)) { |
|
| 25 | 25 | $resourceNamespaces = [$resourceNamespaces]; |
| 26 | 26 | } |
| 27 | 27 | $this->resourceNamespaces = $resourceNamespaces; |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | */ |
| 53 | 53 | protected function qualify($resourceNamespace, $typeName) |
| 54 | 54 | { |
| 55 | - return ltrim($resourceNamespace . '\\' . $typeName, '\\'); |
|
| 55 | + return ltrim($resourceNamespace.'\\'.$typeName, '\\'); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | /** |