diff options
author | Baptiste Lafontaine <baptiste@nadeo.com> | 2015-12-08 12:07:53 +0100 |
---|---|---|
committer | Baptiste Lafontaine <baptiste@nadeo.com> | 2015-12-08 12:07:53 +0100 |
commit | 7b3d93b6d35550a6998f3c74263fa8e23bfeb1e0 (patch) | |
tree | 382a64e555150b8d59cc0b8b2bb0d710efccb9c2 /Core | |
parent | 4fa4e5d97c0f2595e917c3197297d8f9dff7d108 (diff) | |
download | symfony-security-7b3d93b6d35550a6998f3c74263fa8e23bfeb1e0.zip symfony-security-7b3d93b6d35550a6998f3c74263fa8e23bfeb1e0.tar.gz symfony-security-7b3d93b6d35550a6998f3c74263fa8e23bfeb1e0.tar.bz2 |
[Security] Fix a Polyfill import statement in StringUtils
Diffstat (limited to 'Core')
-rw-r--r-- | Core/Util/StringUtils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Util/StringUtils.php b/Core/Util/StringUtils.php index 5900812..bb0c8b2 100644 --- a/Core/Util/StringUtils.php +++ b/Core/Util/StringUtils.php @@ -13,7 +13,7 @@ namespace Symfony\Component\Security\Core\Util; @trigger_error('The '.__NAMESPACE__.'\\StringUtils class is deprecated since version 2.8 and will be removed in 3.0. Use hash_equals() instead.', E_USER_DEPRECATED); -use Symfony\Component\Polyfill\Util\Binary; +use Symfony\Polyfill\Util\Binary; /** * String utility functions. |