Archived
1
0
Fork 0
This repository has been archived on 2023-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
ts3web/src/Control/Actions/IndexAction.php
2018-04-05 16:26:12 +02:00

12 lines
No EOL
243 B
PHP

<?php
use Slim\Http\Request;
use Slim\Http\Response;
final class IndexAction extends AbstractAction
{
public function __invoke(Request $request, Response $response, $args)
{
return $response->withRedirect('/servers');
}
}