| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | 4 | protected function configure() |
|
| 21 | { |
||
| 22 | 4 | $this->bind(RenderInterface::class)->annotatedWith(Stream::class)->to(StreamRenderer::class); |
|
| 23 | 4 | $this->bind()->annotatedWith(Stream::class)->toProvider(StreamProvider::class)->in(Scope::SINGLETON); |
|
| 24 | 4 | $this->bind(StreamerInterface::class)->to(Streamer::class)->in(Scope::SINGLETON); |
|
| 25 | 4 | $this->bind(TransferInterface::class)->annotatedWith(Stream::class)->to(StreamResponder::class); |
|
| 26 | 4 | } |
|
| 27 | } |
||
| 28 |