Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3.0261 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
101 | 31 | private function setName($name) |
|
102 | { |
||
103 | 31 | if (!is_string($name)) { |
|
104 | throw new PlayerException("Name must be a string"); |
||
105 | } |
||
106 | 31 | if (strlen($name) < 3) { |
|
107 | 2 | throw new PlayerException("The name must have at least 2 letters"); |
|
108 | } |
||
109 | |||
110 | 29 | $this->name = $name; |
|
111 | |||
112 | 29 | return $this; |
|
113 | } |
||
114 | |||
141 |