mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-02-05 01:27:19 +01:00
13 lines
179 B
PHP
13 lines
179 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Controller;
|
||
|
|
||
|
use FOS\RestBundle\Controller\FOSRestController;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
abstract class AbstractController extends FOSRestController
|
||
|
{
|
||
|
}
|