1 | <?php |
||
22 | class DashboardPage extends SymfonyPage implements DashboardPageInterface |
||
23 | { |
||
24 | /** |
||
25 | * @var TableAccessorInterface |
||
26 | */ |
||
27 | private $tableAccessor; |
||
28 | |||
29 | /** |
||
30 | * @param TableAccessorInterface $tableAccessor |
||
31 | */ |
||
32 | public function __construct( |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function getTotalSales() |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | public function getNumberOfNewOrders() |
||
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | */ |
||
62 | public function getNumberOfNewOrdersInTheList() |
||
66 | |||
67 | /** |
||
68 | * {@inheritdoc} |
||
69 | */ |
||
70 | public function getNumberOfNewCustomers() |
||
74 | |||
75 | /** |
||
76 | * {@inheritdoc} |
||
77 | */ |
||
78 | public function getNumberOfNewCustomersInTheList() |
||
82 | |||
83 | /** |
||
84 | * {@inheritdoc} |
||
85 | */ |
||
86 | public function getAverageOrderValue() |
||
90 | |||
91 | /** |
||
92 | * {@inheritdoc} |
||
93 | */ |
||
94 | public function getRouteName() |
||
98 | |||
99 | /** |
||
100 | * {@inheritdoc} |
||
101 | */ |
||
102 | protected function getDefinedElements() |
||
113 | } |
||
114 |