webhook-api/src/Deblan/Bundle/ApiBundle/Controller/DefaultController.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()
{
}
}