Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
36 | public function validateMin($attribute, $value, $parameters) |
||
37 | { |
||
38 | if($this->refersToExistingAsset($value)) { |
||
39 | return $this->validateAssetMin($this->existingAsset($value), $parameters); |
||
40 | } |
||
41 | |||
42 | return parent::validateMin($attribute, $value, $parameters); |
||
43 | } |
||
45 |