16 lines
301 B
PHP
16 lines
301 B
PHP
<?php
|
|
|
|
namespace Deblan\Bundle\ApiBundle\Controller;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
|
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
|
|
|
|
class DefaultController extends Controller
|
|
{
|
|
/**
|
|
* @Route("/")
|
|
*/
|
|
public function indexAction()
|
|
{
|
|
}
|
|
}
|