From 1804e5c1ceb9b64ee7a6baac59ea6da2312d785e Mon Sep 17 00:00:00 2001 From: Awilum Date: Sun, 2 Aug 2020 23:37:20 +0300 Subject: [PATCH] refactor(cache): update namespace for AcpuCache issue: The type Doctrine\Cache\Common\AcpuCache was not found. Maybe you did not declare it correctly or list all dependencies? --- src/flextype/app/Foundation/Cache/AcpuCacheAdapter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flextype/app/Foundation/Cache/AcpuCacheAdapter.php b/src/flextype/app/Foundation/Cache/AcpuCacheAdapter.php index 2a71b495..e1d5e049 100644 --- a/src/flextype/app/Foundation/Cache/AcpuCacheAdapter.php +++ b/src/flextype/app/Foundation/Cache/AcpuCacheAdapter.php @@ -4,7 +4,7 @@ declare(strict_types=1); namespace Flextype\App\Foundation\Cache; -use Doctrine\Cache\Common\AcpuCache; +use Doctrine\Common\Cache\AcpuCache; use Psr\Container\ContainerInterface; class AcpuCacheAdapter implements CacheAdapterInterface @@ -15,7 +15,7 @@ class AcpuCacheAdapter implements CacheAdapterInterface * @access private */ private $flextype; - + public function __construct(ContainerInterface $flextype) { $this->flextype = $flextype;