| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | class PageController extends AbstractController |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Returns the html for the privacy policy page. |
||
| 27 | * |
||
| 28 | * @return Response Response object containing the generated output |
||
| 29 | */ |
||
| 30 | public function privacyAction( \Twig\Environment $twig ) : Response |
||
| 31 | { |
||
| 32 | return $twig->render( '@AimeosShop/Page/privacy.html.twig' ); |
||
| 33 | } |
||
| 34 | |||
| 35 | |||
| 36 | /** |
||
| 37 | * Returns the html for the terms and conditions page. |
||
| 38 | * |
||
| 39 | * @return Response Response object containing the generated output |
||
| 40 | */ |
||
| 41 | public function termsAction( \Twig\Environment $twig ) : Response |
||
| 44 | } |
||
| 45 | } |
||
| 46 |