| Total Complexity | 7 |
| Total Lines | 56 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 10 | class DataProviderAudience |
||
| 11 | { |
||
| 12 | /** @var string|null */ |
||
| 13 | protected $dataProvider; |
||
| 14 | |||
| 15 | /** @var int|null */ |
||
| 16 | protected $dataProviderId; |
||
| 17 | |||
| 18 | /** @var int|null */ |
||
| 19 | protected $total; |
||
| 20 | |||
| 21 | /** @var int|null */ |
||
| 22 | protected $unique; |
||
| 23 | |||
| 24 | /** @var int|null */ |
||
| 25 | protected $totalHits; |
||
| 26 | |||
| 27 | /** @var int|null */ |
||
| 28 | protected $uniqueHits; |
||
| 29 | |||
| 30 | /** @var DateTime|null */ |
||
| 31 | protected $date; |
||
| 32 | |||
| 33 | public function getDataProvider(): ?string |
||
| 34 | { |
||
| 35 | return $this->dataProvider; |
||
| 36 | } |
||
| 37 | |||
| 38 | public function getDataProviderId(): ?int |
||
| 39 | { |
||
| 40 | return $this->dataProviderId; |
||
| 41 | } |
||
| 42 | |||
| 43 | public function getTotal(): ?int |
||
| 44 | { |
||
| 45 | return $this->total; |
||
| 46 | } |
||
| 47 | |||
| 48 | public function getUnique(): ?int |
||
| 49 | { |
||
| 50 | return $this->unique; |
||
| 51 | } |
||
| 52 | |||
| 53 | public function getTotalHits(): ?int |
||
| 54 | { |
||
| 55 | return $this->totalHits; |
||
| 56 | } |
||
| 57 | |||
| 58 | public function getUniqueHits(): ?int |
||
| 59 | { |
||
| 60 | return $this->uniqueHits; |
||
| 61 | } |
||
| 62 | |||
| 63 | public function getDate(): ?DateTime |
||
| 66 | } |
||
| 67 | } |
||
| 68 |