@@ -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 | * |
@@ -15,7 +15,6 @@ |
||
15 | 15 | use org\bovigo\vfs\vfsStream; |
16 | 16 | use org\bovigo\vfs\vfsStreamDirectory; |
17 | 17 | use org\bovigo\vfs\vfsStreamWrapper; |
18 | -use Symfony\Component\HttpFoundation\Request; |
|
19 | 18 | use Symfony\Component\HttpFoundation\Response; |
20 | 19 | use Symfony\Component\Yaml\Yaml; |
21 | 20 |