| Total Complexity | 4 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class TeamStats extends Model |
||
| 10 | { |
||
| 11 | 2 | public function getTeamId(): ?string |
|
| 12 | { |
||
| 13 | 2 | return $this->data['team_id']; |
|
| 14 | } |
||
| 15 | |||
| 16 | 2 | public function getTotalMemberCount(): ?int |
|
| 17 | { |
||
| 18 | 2 | return $this->data['total_member_count']; |
|
| 19 | } |
||
| 20 | |||
| 21 | 2 | public function getActiveMemberCount(): ?int |
|
| 24 | } |
||
| 25 | |||
| 26 | 2 | protected static function getFields(): array |
|
| 32 | ]; |
||
| 33 | } |
||
| 35 |