| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class HomeAction extends HtmlAction |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Every Action needs to have a "__invoke" methods which is automatically executed by the application. |
||
| 22 | * This methods needs to return the response which will than be send to the client. |
||
| 23 | * |
||
| 24 | * @param array $arguments Possible arguments from the URL. |
||
| 25 | * @return Response |
||
| 26 | */ |
||
| 27 | public function __invoke(array $arguments = []): Response |
||
| 38 |