| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 29 | public function process(ServerRequestInterface $request, array $results): ?FormProcessReportInterface |
||
| 30 | { |
||
| 31 | if ($this->allFieldsPresent($results)) { |
||
| 32 | $status = $this->cache->deleteMultiple($this->keys); |
||
| 33 | } |
||
| 34 | |||
| 35 | return new FormProcessReport([ |
||
| 36 | 'successful' => $status ?? null, |
||
| 37 | ]); |
||
| 40 |