| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | 9 | public function request(): ServerRequestInterface |
|
| 29 | { |
||
| 30 | 9 | $creator = new ServerRequestCreator( |
|
| 31 | 9 | $this->factory, // ServerRequestFactory |
|
| 32 | 9 | $this->factory, // UriFactory |
|
| 33 | 9 | $this->factory, // UploadedFileFactory |
|
| 34 | 9 | $this->factory // StreamFactory |
|
| 35 | 9 | ); |
|
| 36 | |||
| 37 | 9 | return $creator->fromGlobals(); |
|
| 38 | } |
||
| 40 |