Conditions | 4 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 4 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | 8 | public function check(): bool |
|
24 | { |
||
25 | 8 | if (is_null($this->message)) { |
|
26 | 7 | $this->message = 'Выберите файл для загрузки'; |
|
27 | } |
||
28 | |||
29 | 8 | if ($this->value === false || $this->value->getError() == \UPLOAD_ERR_NO_FILE) { |
|
30 | 4 | $this->element->setRuleError($this->message); |
|
31 | 4 | return false; |
|
32 | } |
||
33 | |||
34 | 4 | return true; |
|
35 | } |
||
37 |