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