| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class Visitor { |
||
| 11 | |||
| 12 | private $totalImpressionCount = 0; |
||
| 13 | private $bucketIdentifier; |
||
| 14 | private $hasDonated; |
||
| 15 | |||
| 16 | public function __construct( int $totalImpressionCount, string $bucketIdentifier, bool $hasDonated ) { |
||
| 17 | $this->totalImpressionCount = $totalImpressionCount; |
||
| 18 | $this->bucketIdentifier = $bucketIdentifier; |
||
| 19 | $this->hasDonated = $hasDonated; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getTotalImpressionCount(): int { |
||
| 24 | } |
||
| 25 | |||
| 26 | public function getBucketIdentifier(): string { |
||
| 28 | } |
||
| 29 | } |