[Cache] Fix wrong classname in deprecation message

This commit is contained in:
Anto 2019-12-14 08:41:21 +01:00
parent 12ff0bceaf
commit c7115a3087
No known key found for this signature in database
GPG Key ID: D33172CA4E946C66

View File

@ -11,7 +11,9 @@
namespace Symfony\Component\Cache\Simple;
use Symfony\Component\Cache\Adapter\ApcuAdapter;
use Symfony\Component\Cache\Traits\ApcuTrait;
use Symfony\Contracts\Cache\CacheInterface;
@trigger_error(sprintf('The "%s" class is deprecated since Symfony 4.3, use "%s" and type-hint for "%s" instead.', ApcuCache::class, ApcuAdapter::class, CacheInterface::class), E_USER_DEPRECATED);