| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class DeleteTrickController extends AbstractController |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var EventDispatcherInterface |
||
| 23 | */ |
||
| 24 | private $dispatcher; |
||
| 25 | |||
| 26 | public function __construct(EventDispatcherInterface $dispatcher) |
||
| 27 | { |
||
| 28 | $this->dispatcher = $dispatcher; |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @Route("/trick/{id}/delete", name="trick.delete") |
||
| 33 | */ |
||
| 34 | public function delete(Trick $trick) |
||
| 40 | } |
||
| 41 | |||
| 43 | } |