diff options
author | Nicolas Grekas <nicolas.grekas@gmail.com> | 2014-12-24 12:34:57 +0100 |
---|---|---|
committer | Nicolas Grekas <nicolas.grekas@gmail.com> | 2014-12-24 22:27:15 +0100 |
commit | 1362197c7127234310faf2c6ebae6876fa28966e (patch) | |
tree | 3f12bd8b95a323b883f0a3a965904314a19ab654 /Http | |
parent | 20711216c818e8a57cdb5d3bc1b2fc8bc34757c9 (diff) | |
download | symfony-security-1362197c7127234310faf2c6ebae6876fa28966e.zip symfony-security-1362197c7127234310faf2c6ebae6876fa28966e.tar.gz symfony-security-1362197c7127234310faf2c6ebae6876fa28966e.tar.bz2 |
[2.5] silence deprecation notices in new components
Diffstat (limited to 'Http')
-rw-r--r-- | Http/phpunit.xml.dist | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Http/phpunit.xml.dist b/Http/phpunit.xml.dist index a735efd..a152839 100644 --- a/Http/phpunit.xml.dist +++ b/Http/phpunit.xml.dist @@ -11,6 +11,10 @@ syntaxCheck="false" bootstrap="vendor/autoload.php" > + <php> + <!-- Silence E_USER_DEPRECATED (-16385 == -1 & ~E_USER_DEPRECATED) --> + <ini name="error_reporting" value="-16385"/> + </php> <testsuites> <testsuite name="Symfony Security Component HTTP Test Suite"> <directory>./Tests/</directory> |