1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-10 15:14:20 +02:00

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?
This commit is contained in:
Awilum
2020-08-02 23:37:20 +03:00
parent 42df4cc760
commit 1804e5c1ce

View File

@@ -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;