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