Passed
Branch develop (21f7ca)
by BENARD
04:27
created

AbstractTablePlayerProvider::getData()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace VideoGamesRecords\DwhBundle\DataProvider\Core;
4
5
use DateTime;
6
use Doctrine\ORM\EntityManagerInterface;
7
use VideoGamesRecords\DwhBundle\Contracts\DataProvider\CoreProviderInterface;
8
use VideoGamesRecords\DwhBundle\Contracts\DwhInterface;
9
10
class AbstractTablePlayerProvider 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
23
    public function getData(): array
24
    {
25
        return array();
26
    }
27
28
    /**
29
     * @param DateTime $date1
30
     * @param DateTime $date2
31
     * @return array
32
     */
33
    public function getNbPostDay(DateTime $date1, DateTime $date2): array
34
    {
35
        return array();
36
    }
37
}
38
39