@@ -69,7 +69,7 @@ |
||
| 69 | 69 | /** |
| 70 | 70 | * Deserializes data into the given type. |
| 71 | 71 | * |
| 72 | - * @param mixed $data |
|
| 72 | + * @param string $data |
|
| 73 | 73 | * @param string $type |
| 74 | 74 | * @param string $format |
| 75 | 75 | * @param SerializationContext|array $context |
@@ -243,7 +243,7 @@ |
||
| 243 | 243 | |
| 244 | 244 | $definitionPaths = array_keys($pathDefinitions); |
| 245 | 245 | sort($definitionPaths); |
| 246 | - $routePaths = array_map(function ($route) { |
|
| 246 | + $routePaths = array_map(function($route) { |
|
| 247 | 247 | return $route->getPath(); |
| 248 | 248 | }, $routes->getIterator()->getArrayCopy()); |
| 249 | 249 | sort($routePaths); |
@@ -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(); |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | * |
| 47 | 47 | * @codeCoverageIgnore |
| 48 | 48 | * |
| 49 | - * @param $swaggerPath |
|
| 49 | + * @param string $swaggerPath |
|
| 50 | 50 | * |
| 51 | 51 | * @throws \InvalidArgumentException |
| 52 | 52 | * @throws \org\bovigo\vfs\vfsStreamException |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | |
| 154 | 154 | /** |
| 155 | 155 | * @param string $path |
| 156 | - * @param array $method |
|
| 156 | + * @param string $method |
|
| 157 | 157 | * @param array $params |
| 158 | 158 | * @param array|null $content |
| 159 | 159 | * |
@@ -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); |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | /** |
| 41 | 41 | * @SuppressWarnings(PHPMD.UnusedFormalParameter) |
| 42 | 42 | * |
| 43 | - * @param mixed $resource |
|
| 43 | + * @param string $resource |
|
| 44 | 44 | * @param null $type |
| 45 | 45 | * |
| 46 | 46 | * @return RouteCollection |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | /** |
| 126 | 126 | * @SuppressWarnings(PHPMD.UnusedFormalParameter) |
| 127 | 127 | * |
| 128 | - * @param mixed $resource |
|
| 128 | + * @param string $resource |
|
| 129 | 129 | * @param string $type |
| 130 | 130 | * |
| 131 | 131 | * @return bool |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | * @param string $username |
| 18 | 18 | * @param string $password |
| 19 | 19 | * |
| 20 | - * @return array |
|
| 20 | + * @return string |
|
| 21 | 21 | */ |
| 22 | 22 | public function loginUser($username, $password) |
| 23 | 23 | { |