function FormUploadedFile::validate

Same name and namespace in other branches
  1. 11.x core/modules/file/src/Upload/FormUploadedFile.php \Drupal\file\Upload\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\Upload

Code

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.