| Total Complexity | 4 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | class Csrf implements RequestHandlerInterface |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * Csrf::handle |
||
| 30 | * |
||
| 31 | * Handles a request and produces a response |
||
| 32 | * |
||
| 33 | * May call other collaborating code to generate the response. |
||
| 34 | * |
||
| 35 | * @param \O2System\Psr\Http\Message\ServerRequestInterface $request |
||
| 36 | */ |
||
| 37 | public function handle(ServerRequestInterface $request) |
||
| 49 | } |