Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / validator / ValidatorBuilderInterface.php
index e4bd1040133d5f2801aa170749efd9e4ec0dc643..d7cd16836bf351e2283a3bda6716994f82af512f 100644 (file)
@@ -27,8 +27,6 @@ interface ValidatorBuilderInterface
     /**
      * Adds an object initializer to the validator.
      *
-     * @param ObjectInitializerInterface $initializer The initializer
-     *
      * @return $this
      */
     public function addObjectInitializer(ObjectInitializerInterface $initializer);
@@ -36,7 +34,7 @@ interface ValidatorBuilderInterface
     /**
      * Adds a list of object initializers to the validator.
      *
-     * @param array $initializers The initializer
+     * @param ObjectInitializerInterface[] $initializers
      *
      * @return $this
      */
@@ -54,7 +52,7 @@ interface ValidatorBuilderInterface
     /**
      * Adds a list of XML constraint mapping files to the validator.
      *
-     * @param array $paths The paths to the mapping files
+     * @param string[] $paths The paths to the mapping files
      *
      * @return $this
      */
@@ -72,7 +70,7 @@ interface ValidatorBuilderInterface
     /**
      * Adds a list of YAML constraint mappings file to the validator.
      *
-     * @param array $paths The paths to the mapping files
+     * @param string[] $paths The paths to the mapping files
      *
      * @return $this
      */
@@ -90,7 +88,7 @@ interface ValidatorBuilderInterface
     /**
      * Enables constraint mapping using the given static methods.
      *
-     * @param array $methodNames The names of the methods
+     * @param string[] $methodNames The names of the methods
      *
      * @return $this
      */
@@ -99,8 +97,6 @@ interface ValidatorBuilderInterface
     /**
      * Enables annotation based constraint mapping.
      *
-     * @param Reader $annotationReader The annotation reader to be used
-     *
      * @return $this
      */
     public function enableAnnotationMapping(Reader $annotationReader = null);
@@ -115,8 +111,6 @@ interface ValidatorBuilderInterface
     /**
      * Sets the class metadata factory used by the validator.
      *
-     * @param MetadataFactoryInterface $metadataFactory The metadata factory
-     *
      * @return $this
      */
     public function setMetadataFactory(MetadataFactoryInterface $metadataFactory);
@@ -124,8 +118,6 @@ interface ValidatorBuilderInterface
     /**
      * Sets the cache for caching class metadata.
      *
-     * @param CacheInterface $cache The cache instance
-     *
      * @return $this
      */
     public function setMetadataCache(CacheInterface $cache);
@@ -133,8 +125,6 @@ interface ValidatorBuilderInterface
     /**
      * Sets the constraint validator factory used by the validator.
      *
-     * @param ConstraintValidatorFactoryInterface $validatorFactory The validator factory
-     *
      * @return $this
      */
     public function setConstraintValidatorFactory(ConstraintValidatorFactoryInterface $validatorFactory);
@@ -142,8 +132,6 @@ interface ValidatorBuilderInterface
     /**
      * Sets the translator used for translating violation messages.
      *
-     * @param TranslatorInterface $translator The translator instance
-     *
      * @return $this
      */
     public function setTranslator(TranslatorInterface $translator);