Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class ContextGenerator |
||
19 | { |
||
20 | /** @var string[] */ |
||
21 | private $resultTypesByMethods; |
||
22 | |||
23 | /** @var string|null */ |
||
24 | private $errorType; |
||
25 | |||
26 | 47 | public function __construct(array $resultTypesByMethods = [], string $errorType = null) |
|
30 | 47 | } |
|
31 | |||
32 | 34 | public function createSerializationContext($request): array |
|
55 |