mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-27 05:54:02 +01:00
24 lines
425 B
PHP
24 lines
425 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Controller;
|
||
|
|
||
|
use Symfony\Component\HttpFoundation\Response;
|
||
|
use Symfony\Component\HttpFoundation\Request;
|
||
|
|
||
|
/**
|
||
|
* Offers an SPA with Vue.js.
|
||
|
*
|
||
|
* @see https://vuejs.org/
|
||
|
* @see https://de.wikipedia.org/wiki/Single-Page-Webanwendung
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
* @todo Write tests!
|
||
|
*/
|
||
|
class SPAController extends AbstractController
|
||
|
{
|
||
|
public function spa(Request $request): Response
|
||
|
{
|
||
|
}
|
||
|
}
|