Conditions | 3 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
16 | 6 | public function isValid() |
|
17 | { |
||
18 | 6 | if ($this->data === null || empty($this->data)) { |
|
19 | 6 | $this->setErrorMessage($this->attributes["validatorName"], Lang::get("validator.required", [ |
|
20 | 6 | 'name' => $this->attributes["name"] |
|
21 | 6 | ], "The {name} field is required.")); |
|
22 | |||
23 | 6 | return false; |
|
24 | } |
||
25 | |||
26 | 3 | return true; |
|
27 | } |
||
28 | } |
||
29 |