| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class ChannelStats extends Model |
||
| 10 | { |
||
| 11 | 2 | public function getChannelId(): ?string |
|
| 12 | { |
||
| 13 | 2 | return $this->data['channel_id']; |
|
| 14 | } |
||
| 15 | |||
| 16 | 2 | public function getMemberCount(): ?int |
|
| 17 | { |
||
| 18 | 2 | return $this->data['member_count']; |
|
| 19 | } |
||
| 20 | |||
| 21 | 2 | protected static function getFields(): array |
|
| 26 | ]; |
||
| 27 | } |
||
| 28 | } |
||
| 29 |