Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class AbstractCoreProvider implements DwhInterface, CoreProviderInterface |
||
11 | { |
||
12 | protected EntityManagerInterface $em; |
||
13 | |||
14 | public function __construct(EntityManagerInterface $em) |
||
15 | { |
||
16 | $this->em = $em; |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * @return array |
||
21 | */ |
||
22 | public function getData(): array |
||
23 | { |
||
24 | return array(); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @param DateTime $date1 |
||
29 | * @param DateTime $date2 |
||
30 | * @return array |
||
31 | */ |
||
32 | public function getNbPostDay(DateTime $date1, DateTime $date2): array |
||
35 | } |
||
36 | } |
||
37 | |||
38 |