| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 15 | class Person |
||
| 16 | { |
||
| 17 | use IdentityTrait, NameTrait; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var int |
||
| 21 | */ |
||
| 22 | private $teamsCount; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return int |
||
| 26 | */ |
||
| 27 | 1 | public function getTeamsCount(): int |
|
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param int $teamsCount |
||
| 34 | */ |
||
| 35 | 3 | public function setTeamsCount(int $teamsCount): void |
|
| 42 |