function FormUploadedFile::validate
Validates the uploaded file information.
Parameters
\Symfony\Component\Validator\Validator\ValidatorInterface $validator: A validator object.
array $options: Options to pass to a constraint.
Return value
\Symfony\Component\Validator\ConstraintViolationListInterface The list of violations.
Overrides UploadedFileInterface::validate
File
-
core/
modules/ file/ src/ Upload/ FormUploadedFile.php, line 94
Class
- FormUploadedFile
- Provides a bridge to Symfony UploadedFile.
Namespace
Drupal\file\UploadCode
public function validate(ValidatorInterface $validator, array $options = []) : ConstraintViolationListInterface {
$constraint = new UploadedFileConstraint($options);
return $validator->validate($this->uploadedFile, $constraint);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.