mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-30 22:18:46 +02:00
validator component
This commit is contained in:
22
lib/symfony/validator/Constraints/Required.php
Normal file
22
lib/symfony/validator/Constraints/Required.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\Validator\Constraints;
|
||||
|
||||
/**
|
||||
* @Annotation
|
||||
* @Target({"ANNOTATION"})
|
||||
*
|
||||
* @author Bernhard Schussek <bschussek@gmail.com>
|
||||
*/
|
||||
class Required extends Existence
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user