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