Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1.216 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | 4 | protected function configure() |
|
19 | { |
||
20 | $this->bind(RouterInterface::class)->to(WebRouter::class)->in(Scope::SINGLETON); |
||
21 | $this->bind(WebRouterInterface::class)->to(WebRouter::class)->in(Scope::SINGLETON); |
||
22 | $this->bind(HttpMethodParamsInterface::class)->to(HttpMethodParams::class)->in(Scope::SINGLETON); |
||
23 | 4 | } |
|
24 | } |
||
25 |