| Total Complexity | 4 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class PlayerChartEvent extends Event |
||
| 9 | { |
||
| 10 | protected PlayerChart $playerChart; |
||
| 11 | protected ?int $oldRank; |
||
| 12 | protected int $oldNbEqual; |
||
| 13 | |||
| 14 | public function __construct(PlayerChart $playerChart, ?int $oldRank, int $oldNbEqual) |
||
| 19 | } |
||
| 20 | |||
| 21 | public function getPlayerChart(): PlayerChart |
||
| 24 | } |
||
| 25 | |||
| 26 | public function getOldRank(): ?int |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getOldNbEqual(): int |
||
| 36 |