Commit 24fefe9e authored by Taylor Otwell's avatar Taylor Otwell

Remove check for items in APC driver.

parent 44a48256
......@@ -28,11 +28,6 @@ class APC implements \System\Cache\Driver {
*/
public function get($key)
{
if (array_key_exists($key, $this->items))
{
return $this->items[$key];
}
$cache = apc_fetch(\System\Config::get('cache.key').$key);
if ($cache === false)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment