| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class TrickHistoryController extends AbstractController |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var TrickHistory |
||
| 21 | */ |
||
| 22 | private $trickHistory; |
||
| 23 | |||
| 24 | public function __construct(TrickHistory $trickHistory) |
||
| 25 | { |
||
| 26 | $this->trickHistory = $trickHistory; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @Route("/trick/edit/history/{id}", name="trick.history") |
||
| 31 | * @return \Symfony\Component\HttpFoundation\Response |
||
| 32 | */ |
||
| 33 | public function index(Trick $trick) |
||
| 41 | ]); |
||
| 42 | } |
||
| 44 |