chill-bundles/Controller/TaskController.php
Julien Fastré 60f6cd95b4 improve single task list
- move to a new controller
- refactor to be more adaptive to context
- partial autowiring
2018-04-23 21:33:07 +02:00

20 lines
538 B
PHP

<?php
namespace Chill\TaskBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Request;
use Chill\PersonBundle\Entity\Person;
use Chill\TaskBundle\Entity\SingleTask;
use Chill\MainBundle\Entity\User;
use Chill\PersonBundle\Security\Authorization\PersonVoter;
use Chill\TaskBundle\Repository\SingleTaskRepository;
use Symfony\Component\HttpFoundation\Response;
class TaskController extends Controller
{
}