| Conditions | 4 |
| Paths | 4 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 4.5923 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | 2 | public function setCode(?string $code): void |
|
| 24 | { |
||
| 25 | 2 | if ($code === '') { |
|
| 26 | $code = null; |
||
| 27 | } |
||
| 28 | |||
| 29 | 2 | if ($code !== $this->code && !$this->canUpdateCode()) { |
|
| 30 | throw new Exception('Only majors and administrators are allowed to update card.code'); |
||
| 31 | } |
||
| 32 | |||
| 33 | 2 | $this->code = $code; |
|
| 34 | 2 | } |
|
| 59 |