PHP 8.2.30
Preview: ValidatorBuilderInterface.php Size: 5.37 KB
/proc/thread-self/root/opt/alt/php55/usr/share/pear/Symfony/Component/Validator/ValidatorBuilderInterface.php

<?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;

use Symfony\Component\PropertyAccess\PropertyAccessorInterface;
use Symfony\Component\Validator\Mapping\Cache\CacheInterface;
use Symfony\Component\Translation\TranslatorInterface;
use Doctrine\Common\Annotations\Reader;

/**
 * A configurable builder for ValidatorInterface objects.
 *
 * @author Bernhard Schussek <bschussek@gmail.com>
 */
interface ValidatorBuilderInterface
{
    /**
     * Adds an object initializer to the validator.
     *
     * @param ObjectInitializerInterface $initializer The initializer.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function addObjectInitializer(ObjectInitializerInterface $initializer);

    /**
     * Adds a list of object initializers to the validator.
     *
     * @param array $initializers The initializer.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function addObjectInitializers(array $initializers);

    /**
     * Adds an XML constraint mapping file to the validator.
     *
     * @param string $path The path to the mapping file.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function addXmlMapping($path);

    /**
     * Adds a list of XML constraint mapping files to the validator.
     *
     * @param array $paths The paths to the mapping files.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function addXmlMappings(array $paths);

    /**
     * Adds a YAML constraint mapping file to the validator.
     *
     * @param string $path The path to the mapping file.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function addYamlMapping($path);

    /**
     * Adds a list of YAML constraint mappings file to the validator.
     *
     * @param array $paths The paths to the mapping files.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function addYamlMappings(array $paths);

    /**
     * Enables constraint mapping using the given static method.
     *
     * @param string $methodName The name of the method.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function addMethodMapping($methodName);

    /**
     * Enables constraint mapping using the given static methods.
     *
     * @param array $methodNames The names of the methods.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function addMethodMappings(array $methodNames);

    /**
     * Enables annotation based constraint mapping.
     *
     * @param Reader $annotationReader The annotation reader to be used.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function enableAnnotationMapping(Reader $annotationReader = null);

    /**
     * Disables annotation based constraint mapping.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function disableAnnotationMapping();

    /**
     * Sets the class metadata factory used by the validator.
     *
     * @param MetadataFactoryInterface $metadataFactory The metadata factory.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function setMetadataFactory(MetadataFactoryInterface $metadataFactory);

    /**
     * Sets the cache for caching class metadata.
     *
     * @param CacheInterface $cache The cache instance.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function setMetadataCache(CacheInterface $cache);

    /**
     * Sets the constraint validator factory used by the validator.
     *
     * @param ConstraintValidatorFactoryInterface $validatorFactory The validator factory.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function setConstraintValidatorFactory(ConstraintValidatorFactoryInterface $validatorFactory);

    /**
     * Sets the translator used for translating violation messages.
     *
     * @param TranslatorInterface $translator The translator instance.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function setTranslator(TranslatorInterface $translator);

    /**
     * Sets the default translation domain of violation messages.
     *
     * The same message can have different translations in different domains.
     * Pass the domain that is used for violation messages by default to this
     * method.
     *
     * @param string $translationDomain The translation domain of the violation messages.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function setTranslationDomain($translationDomain);

    /**
     * Sets the property accessor for resolving property paths.
     *
     * @param PropertyAccessorInterface $propertyAccessor The property accessor.
     *
     * @return ValidatorBuilderInterface The builder object.
     */
    public function setPropertyAccessor(PropertyAccessorInterface $propertyAccessor);

    /**
     * Builds and returns a new validator object.
     *
     * @return ValidatorInterface The built validator.
     */
    public function getValidator();
}

Directory Contents

Dirs: 4 × Files: 28

Name Size Perms Modified Actions
- drwxr-xr-x 2024-03-03 22:54:39
Edit Download
Exception DIR
- drwxr-xr-x 2024-03-03 22:54:39
Edit Download
Mapping DIR
- drwxr-xr-x 2024-03-03 22:54:39
Edit Download
Resources DIR
- drwxr-xr-x 2024-03-03 22:54:39
Edit Download
339 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
572 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
6.64 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
700 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
2.24 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
775 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
899 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
4.23 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
4.25 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
3.17 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.96 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
5.12 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
8.30 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
12.07 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.89 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
597 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
990 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
2.82 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
817 B lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.18 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.23 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
1.07 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
6.17 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
3.46 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
6.52 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
9.85 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
5.37 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download
3.50 KB lrw-r--r-- 2019-12-18 11:24:08
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).