Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
42 | public function __construct( |
||
43 | Specification $specification, |
||
44 | Operation $operation, |
||
45 | SerializerTypeDefinitionMap $definitionMap = null |
||
46 | ) { |
||
47 | $this->definitionMap = $definitionMap; |
||
48 | $this->specification = $specification; |
||
49 | $this->operation = $operation; |
||
50 | } |
||
51 | |||
76 |