removed deprecated notices that make the tests fail

This commit is contained in:
Fabien Potencier 2015-03-23 10:03:11 +01:00
parent f5a020e275
commit 1a4d7d7e48
2 changed files with 3 additions and 33 deletions

View File

@ -1,30 +0,0 @@
<?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\Deprecated;
trigger_error('Constants STRICT_PATTERN, LOOSE_PATTERN and STRICT_UUID_LENGTH in class Symfony\Component\Validator\Constraints\UuidValidator are deprecated since version 2.6 and will be removed in 3.0.', E_USER_DEPRECATED);
/**
* @deprecated since version 2.7, to be removed in 3.0.
* @internal
*/
final class UuidValidator
{
const STRICT_PATTERN = '/^[a-f0-9]{8}-[a-f0-9]{4}-[%s][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$/i';
const LOOSE_PATTERN = '/^[a-f0-9]{4}(?:-?[a-f0-9]{4}){7}$/i';
const STRICT_UUID_LENGTH = 36;
private function __construct()
{
}
}

View File

@ -60,17 +60,17 @@ class UuidValidator extends ConstraintValidator
/**
* @deprecated since version 2.6, to be removed in 3.0
*/
const STRICT_PATTERN = Deprecated::STRICT_PATTERN;
const STRICT_PATTERN = '/^[a-f0-9]{8}-[a-f0-9]{4}-[%s][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$/i';
/**
* @deprecated since version 2.6, to be removed in 3.0
*/
const LOOSE_PATTERN = Deprecated::LOOSE_PATTERN;
const LOOSE_PATTERN = '/^[a-f0-9]{4}(?:-?[a-f0-9]{4}){7}$/i';
/**
* @deprecated since version 2.6, to be removed in 3.0
*/
const STRICT_UUID_LENGTH = Deprecated::STRICT_UUID_LENGTH;
const STRICT_UUID_LENGTH = 36;
/**
* {@inheritdoc}