| Conditions | 6 |
| Paths | 4 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 84 | 125 | public function success(): bool |
|
| 85 | { |
||
| 86 | 125 | if ($this->validated === null) { |
|
| 87 | 125 | if ($this->allowNull && $this->input === null) { |
|
| 88 | 2 | $this->validated = true; |
|
| 89 | 124 | } elseif ($this->allowEmptyString && $this->input === '') { |
|
| 90 | 2 | $this->validated = true; |
|
| 91 | } else { |
||
| 92 | 123 | $this->validated = $this->validation($this->input, $this->value); |
|
| 93 | } |
||
| 94 | } |
||
| 95 | |||
| 96 | 125 | return $this->validated; |
|
| 97 | } |
||
| 99 |