Exemplo n.º 1
0
 public function testGetReturnsResultEvenIfNoMetaphoreValueObjectStored()
 {
     $cache = new Cache(new MockStore());
     $key = 'dimaria7';
     $value = 'Man Utd, not Real';
     $cache->setResult($key, $value, new Ttl(30));
     $result = $cache->getValue($key);
     $this->assertTrue($result instanceof \Metaphore\Value);
     $this->assertSame($value, $result->getResult());
 }
Exemplo n.º 2
0
 /**
  * @see CacheAdapterInterface::cache()
  */
 public function cache($key, callable $callable, $ttl)
 {
     return $this->backend->cache($this->prefix . $key, $callable, $ttl);
 }