| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 26 | public function __construct() |
||
| 27 | { |
||
| 28 | $request = new Request(); |
||
| 29 | $request->setUri(SystemRequestInterface::ENDPOINT); |
||
| 30 | $request->setMethod('POST'); |
||
| 31 | $request->setResponseFactory(new SystemsResponseFactory()); |
||
| 32 | |||
| 33 | $this->fields = new NoopFields(); |
||
| 34 | |||
| 35 | $this->request = $request; |
||
| 36 | } |
||
| 37 | } |
||
| 38 |