1 | <?php |
||
19 | class ProductShowPage extends SymfonyPage |
||
20 | { |
||
21 | /** |
||
22 | * @param array $urlParameters |
||
23 | * |
||
24 | * @return ProductShowPage |
||
25 | */ |
||
26 | public function open(array $urlParameters = []) |
||
33 | |||
34 | public function addToCart() |
||
38 | |||
39 | /** |
||
40 | * @param string $quantity |
||
41 | */ |
||
42 | public function addToCartWithQuantity($quantity) |
||
47 | |||
48 | /** |
||
49 | * {@inheritdoc} |
||
50 | */ |
||
51 | public function getRouteName() |
||
54 | } |
||
55 |