| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | 16 | public function validate($received): bool |
|
| 37 | { |
||
| 38 | 16 | if ($received === null) { |
|
| 39 | 1 | $this->message = "Received value is null"; |
|
| 40 | 1 | return true; |
|
| 41 | } |
||
| 42 | |||
| 43 | 15 | if (!strlen((string)$received)) { |
|
| 44 | 4 | $this->message = "Received value is a void string"; |
|
| 45 | 4 | return true; |
|
| 46 | } |
||
| 47 | |||
| 48 | 11 | return false; |
|
| 49 | } |
||
| 61 |