| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function __construct(\Memcached $memcached, $ttl) |
||
| 27 | { |
||
| 28 | $this->memcached = $memcached; |
||
| 29 | $this->memcached->setOption(MemcachedStore::OPT_PREFIX_KEY, self::CACHE_KEY_PREFIX); |
||
| 30 | $this->memcached->setOption(MemcachedStore::OPT_LIBKETAMA_COMPATIBLE, true); |
||
| 31 | $this->ttl = $ttl; |
||
| 32 | } |
||
| 33 | |||
| 71 |