| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 2 |
| CRAP Score | 1.4705 |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | 3 | protected function configure() |
|
| 25 | { |
||
| 26 | $this->bind(AppInterface::class)->to(MinApp::class); |
||
| 27 | $this->install(new DoctrineCacheModule); |
||
| 28 | $this->install(new DoctrineAnnotationModule); |
||
| 29 | $this->install(new ResourceModule); |
||
| 30 | $this->install(new RouterModule); |
||
| 31 | $this->install(new HttpResponderModule); |
||
| 32 | $this->install(new ErrorModule); |
||
| 33 | 3 | } |
|
| 34 | } |
||
| 35 |