Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / validator / Validation.php
index 94ed62c52559b96aba3d6327e4f52007e99d0d15..950efb6cce2677882aab72d5da89d7ba48d2daa6 100644 (file)
@@ -11,6 +11,8 @@
 
 namespace Symfony\Component\Validator;
 
+use Symfony\Component\Validator\Validator\ValidatorInterface;
+
 /**
  * Entry point for the Validator component.
  *
@@ -18,24 +20,6 @@ namespace Symfony\Component\Validator;
  */
 final class Validation
 {
-    /**
-     * The Validator API provided by Symfony 2.4 and older.
-     *
-     * @deprecated use API_VERSION_2_5_BC instead.
-     */
-    const API_VERSION_2_4 = 1;
-
-    /**
-     * The Validator API provided by Symfony 2.5 and newer.
-     */
-    const API_VERSION_2_5 = 2;
-
-    /**
-     * The Validator API provided by Symfony 2.5 and newer with a backwards
-     * compatibility layer for 2.4 and older.
-     */
-    const API_VERSION_2_5_BC = 3;
-
     /**
      * Creates a new validator.
      *