Files
chaffe-theme/vendor/salesforce/handlebars-php/src/Handlebars/Cache/Dummy.php

62 lines
1.2 KiB
PHP
Executable File

<?php
/**
* A dummy array cache
*
* @category Xamin
* @package Handlebars
* @author fzerorubigd <fzerorubigd@gmail.com>
* @author Behrooz Shabani <everplays@gmail.com>
* @copyright 2012 (c) ParsPooyesh Co
* @copyright 2013 (c) Behrooz Shabani
* @license MIT
* @link http://voodoophp.org/docs/handlebars
*/
namespace Handlebars\Cache;
use Handlebars\Cache;
class Dummy implements Cache
{
private $cache = [];
/**
* Get cache for $name if exist.
*
* @param string $name Cache id
*
* @return mixed data on hit, boolean false on cache not found
*/
public function get($name)
{
if (array_key_exists($name, $this->cache)) {
return $this->cache[$name];
}
return false;
}
/**
* Set a cache
*
* @param string $name cache id
* @param mixed $value data to store
*
* @return void
*/
public function set($name, $value)
{
$this->cache[$name] = $value;
}
/**
* Remove cache
*
* @param string $name Cache id
*
* @return void
*/
public function remove($name)
{
unset($this->cache[$name]);
}
}