1 | <?php |
||
21 | class DashboardStatisticsProvider implements DashboardStatisticsProviderInterface |
||
22 | { |
||
23 | /** |
||
24 | * @var OrderRepositoryInterface |
||
25 | */ |
||
26 | private $orderRepository; |
||
27 | |||
28 | /** |
||
29 | * @var CustomerRepositoryInterface |
||
30 | */ |
||
31 | private $customerRepository; |
||
32 | |||
33 | /** |
||
34 | * @param OrderRepositoryInterface $orderRepository |
||
35 | * @param CustomerRepositoryInterface $customerRepository |
||
36 | */ |
||
37 | public function __construct( |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | public function getStatisticsForChannel(ChannelInterface $channel) |
||
56 | } |
||
57 |