1 | <?php |
||
15 | class BasketController extends AbstractController |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * Basket repository |
||
20 | * |
||
21 | * @var \FRUIT\Shopize\Domain\Repository\BasketRepository |
||
22 | * @inject |
||
23 | */ |
||
24 | protected $basketRepository; |
||
25 | |||
26 | /** |
||
27 | * List action |
||
28 | */ |
||
29 | public function listAction() |
||
33 | |||
34 | /** |
||
35 | * Add action |
||
36 | */ |
||
37 | public function addAction() |
||
40 | |||
41 | /** |
||
42 | * remove action |
||
43 | */ |
||
44 | public function removeAction() |
||
47 | } |
||
48 |