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