1 | <?php |
||
15 | class ProductController extends AbstractController |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * Product repository |
||
20 | * |
||
21 | * @var \FRUIT\Shopize\Domain\Repository\ProductRepository |
||
22 | * @inject |
||
23 | */ |
||
24 | protected $productRepository; |
||
25 | |||
26 | /** |
||
27 | * List action |
||
28 | */ |
||
29 | public function listAction() |
||
33 | |||
34 | /** |
||
35 | * Detail action |
||
36 | * |
||
37 | * @param \FRUIT\Shopize\Domain\Model\Product $product |
||
38 | */ |
||
39 | public function detailAction(Product $product) |
||
43 | } |
||
44 |