Total Complexity | 4 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class SymfonyDecoderAdapter implements DecoderInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var SymfonyDecoderInterface |
||
11 | */ |
||
12 | private $decoder; |
||
13 | 10 | ||
14 | public function __construct(SymfonyDecoderInterface $decoder) |
||
15 | 10 | { |
|
16 | 10 | $this->decoder = $decoder; |
|
17 | } |
||
18 | 5 | ||
19 | public function decode($data, $format) |
||
36 | } |
||
37 | } |
||
38 |