mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
- move to a new controller - refactor to be more adaptive to context - partial autowiring
20 lines
538 B
PHP
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
|
|
{
|
|
|
|
|
|
}
|