for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MidasSoft\DominicanBankParser\Cache;
use MidasSoft\DominicanBankParser\Interfaces\CacheInterface;
abstract class AbstractCacheDriver implements CacheInterface
{
/**
* The config of the driver.
*
* @var array
*/
protected $config;
* The keys of the cached values.
protected $keys;
* Returns the config property.
* @return array
public function getConfig()
return $this->config;
}
* Returns the value for some config entry.
* @param string $key
* @return mixed|null
public function getConfigKey($key)
return isset($this->config[$key]) ? $this->config[$key] : null;
* Returns the keys property.
public function getKeys()
return $this->keys;