@@ -94,7 +94,7 @@ |
||
94 | 94 | public function __construct() |
95 | 95 | { |
96 | 96 | $this->setArgumentResolver(new ArgumentResolver($this)) |
97 | - ->setObjectInflector(new ObjectInflector($this->argumentResolver)); |
|
97 | + ->setObjectInflector(new ObjectInflector($this->argumentResolver)); |
|
98 | 98 | } |
99 | 99 | |
100 | 100 | /** |
@@ -54,25 +54,25 @@ |
||
54 | 54 | case 'void': |
55 | 55 | case 'null': |
56 | 56 | $this->container() |
57 | - ->bindClass(CacheItemPoolInterface::class, 'Cache\Adapter\Void\VoidCachePool', true); |
|
57 | + ->bindClass(CacheItemPoolInterface::class, 'Cache\Adapter\Void\VoidCachePool', true); |
|
58 | 58 | break; |
59 | 59 | case 'file': |
60 | 60 | case 'files': |
61 | 61 | case 'filesystem': |
62 | 62 | $this->container() |
63 | - ->bindFactory(CacheItemPoolInterface::class, $this->filesystemCachePoolFactory(), true); |
|
63 | + ->bindFactory(CacheItemPoolInterface::class, $this->filesystemCachePoolFactory(), true); |
|
64 | 64 | break; |
65 | 65 | case 'redis': |
66 | 66 | $this->container() |
67 | - ->bindClass(CacheItemPoolInterface::class, 'Cache\Adapter\Redis\RedisCachePool', true); |
|
67 | + ->bindClass(CacheItemPoolInterface::class, 'Cache\Adapter\Redis\RedisCachePool', true); |
|
68 | 68 | break; |
69 | 69 | case 'predis': |
70 | 70 | $this->container() |
71 | - ->bindClass(CacheItemPoolInterface::class, 'Cache\Adapter\Predis\PredisCachePool', true); |
|
71 | + ->bindClass(CacheItemPoolInterface::class, 'Cache\Adapter\Predis\PredisCachePool', true); |
|
72 | 72 | break; |
73 | 73 | case 'memcached': |
74 | 74 | $this->container() |
75 | - ->bindClass(CacheItemPoolInterface::class, 'Cache\Adapter\Memcached\MemcachedCachePool', true); |
|
75 | + ->bindClass(CacheItemPoolInterface::class, 'Cache\Adapter\Memcached\MemcachedCachePool', true); |
|
76 | 76 | break; |
77 | 77 | default: |
78 | 78 | $this->container()->bindClass( |