Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function setUp() |
||
17 | { |
||
18 | $container = new Container(); |
||
19 | $container->set('api_validator.decoder.json', new JsonDecoder()); |
||
20 | $this->decoderProvider = new DecoderProvider(array('json' => 'api_validator.decoder.json')); |
||
21 | $this->decoderProvider->setContainer($container); |
||
22 | } |
||
23 | |||
54 |