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