Conditions | 3 |
Paths | 3 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 3.3332 |
Changes | 0 |
1 | <?php |
||
15 | 1 | private function getVersionMessage(object $on = null):string |
|
16 | { |
||
17 | 1 | if ($on instanceof Team) { |
|
18 | return "No version available for team : " . $on->getName(); |
||
19 | 1 | } elseif ($on instanceof Player) { |
|
20 | 1 | return "No version available for player : " . $on->getName(); |
|
21 | } |
||
22 | return "No version available"; |
||
23 | } |
||
25 |