| Total Complexity | 6 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class BucketLogBucket { |
||
| 8 | |||
| 9 | private int $id; |
||
| 10 | private BucketLog $bucketLog; |
||
| 11 | private string $name; |
||
| 12 | private string $campaign; |
||
| 13 | |||
| 14 | public function __construct( string $name, string $campaign ) { |
||
| 15 | $this->name = $name; |
||
| 16 | $this->campaign = $campaign; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getId(): int { |
||
| 20 | return $this->id; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getBucketLog(): BucketLog { |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getName(): string { |
||
| 28 | return $this->name; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getCampaign(): string { |
||
| 33 | } |
||
| 34 | |||
| 35 | public function setBucketLog( BucketLog $bucketLog ): BucketLogBucket { |
||
| 36 | $this->bucketLog = $bucketLog; |
||
| 40 |