| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | class Basket |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Returns the html for the standard basket page. |
||
| 27 | * |
||
| 28 | * @param ContainerInterface $container Dependency injection container |
||
| 29 | * @param ServerRequestInterface $request Request object |
||
| 30 | * @param ResponseInterface $response Response object |
||
| 31 | * @param array $args Associative list of route parameters |
||
| 32 | * @return ResponseInterface $response Modified response object with generated output |
||
| 33 | */ |
||
| 34 | public static function indexAction( ContainerInterface $container, ServerRequestInterface $request, |
||
| 41 | } |
||
| 42 | } |