chill-bundles/Controller/DefaultController.php
2018-04-13 22:16:40 +02:00

14 lines
271 B
PHP

?php
namespace Chill\TaskBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class DefaultController extends Controller
{
public function indexAction()
{
return $this->render('ChillTaskBundle:Default:index.html.twig');
}
}