| 1 | <?php |
||
| 16 | class ExtensionConstraint implements ConstraintInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * allowed extensions |
||
| 20 | * @var array |
||
| 21 | */ |
||
| 22 | protected $allowedExtensions = []; |
||
| 23 | |||
| 24 | public function __construct(array $allowedExtensions) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function validate(UploadedFile $file) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function getErrorMessage(UploadedFile $file) |
||
| 44 | } |