| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function register() |
||
| 31 | { |
||
| 32 | $this->getContainer()->share(Response::class, ResponseService::class); |
||
| 33 | |||
| 34 | $this->getContainer()->share( |
||
| 35 | 'request', |
||
| 36 | function () { |
||
| 37 | return ServerRequestFactory::fromGlobals(); |
||
| 38 | } |
||
| 39 | ); |
||
| 40 | |||
| 41 | $this->getContainer()->share('emitter', \Zend\Diactoros\Response\SapiEmitter::class); |
||
| 42 | } |
||
| 43 | } |