| 1 | <?php |
||
| 23 | class IndexPage extends SymfonyPage implements IndexPageInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var TableManipulatorInterface |
||
| 27 | */ |
||
| 28 | private $tableManipulator; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | * |
||
| 33 | * @param TableManipulatorInterface $tableManipulator |
||
| 34 | */ |
||
| 35 | public function __construct( |
||
| 45 | |||
| 46 | /** |
||
| 47 | * {@inheritdoc} |
||
| 48 | */ |
||
| 49 | public function isThereProduct(ProductInterface $product) |
||
| 59 | |||
| 60 | /** |
||
| 61 | * {@inheritdoc} |
||
| 62 | */ |
||
| 63 | protected function getRouteName() |
||
| 67 | } |
||
| 68 |