| 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 | 6 | public function check(): bool |
|
| 24 | { |
||
| 25 | 6 | if (is_null($this->message)) { |
|
| 26 | 5 | $this->message = 'Выберите файл для загрузки'; |
|
| 27 | } |
||
| 28 | |||
| 29 | 6 | if ($this->value === false || $this->value->getError() == \UPLOAD_ERR_NO_FILE) { |
|
| 30 | 3 | $this->element->setRuleError($this->message); |
|
| 31 | 3 | return false; |
|
| 32 | } |
||
| 33 | |||
| 34 | 3 | return true; |
|
| 35 | } |
||
| 37 |