Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
42 | public function mapField($field, array $input, &$output) |
||
43 | { |
||
44 | $this->guardInvalidArguments($field, $input, $output); |
||
45 | |||
46 | if (!array_key_exists('composite:aperture', $input)) { |
||
47 | return; |
||
48 | } |
||
49 | |||
50 | $aperture = new Aperture( |
||
51 | $input['composite:aperture'] |
||
52 | ); |
||
53 | |||
54 | $output = $output->withAperture($aperture); |
||
55 | } |
||
56 | } |
||
57 |