Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
19 | 7 | protected function configure() |
|
20 | { |
||
21 | 7 | $this->rename(RenderInterface::class, 'original'); |
|
22 | 7 | $this->bind(RenderInterface::class)->to(StreamRenderer::class)->in(Scope::SINGLETON); |
|
23 | 7 | $this->bind()->annotatedWith(Stream::class)->toProvider(StreamProvider::class)->in(Scope::SINGLETON); |
|
24 | 7 | } |
|
25 | } |
||
26 |