initial commit

This commit is contained in:
2018-04-13 22:16:40 +02:00
commit 7a85e00c16
14 changed files with 765 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
?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');
}
}