This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Validator/Constraints/File.php

14 lines
529 B
PHP
Raw Normal View History

<?php
namespace Symfony\Component\Validator\Constraints;
class File extends \Symfony\Component\Validator\Constraint
{
public $maxSize = null;
public $mimeTypes = array();
public $notFoundMessage = 'The file could not be found';
public $notReadableMessage = 'The file is not readable';
public $maxSizeMessage = 'The file is too large ({{ size }}). Allowed maximum size is {{ limit }}';
public $mimeTypesMessage = 'The mime type of the file is invalid ({{ type }}). Allowed mime types are {{ types }}';
}