mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
38 lines
820 B
PHP
38 lines
820 B
PHP
<?php
|
|
|
|
namespace Kanboard\Core\Cache;
|
|
|
|
/**
|
|
* Base class for cache drivers
|
|
*
|
|
* @package cache
|
|
* @author Frederic Guillot
|
|
*/
|
|
abstract class Base
|
|
{
|
|
/**
|
|
* Proxy cache
|
|
*
|
|
* Note: Arguments must be scalar types
|
|
*
|
|
* @access public
|
|
* @param string $class Class instance
|
|
* @param string $method Container method
|
|
* @return mixed
|
|
*/
|
|
public function proxy($class, $method)
|
|
{
|
|
$args = func_get_args();
|
|
array_shift($args);
|
|
|
|
$key = 'proxy:'.get_class($class).':'.implode(':', $args);
|
|
$result = $this->get($key);
|
|
|
|
if ($result === null) {
|
|
$result = call_user_func_array(array($class, $method), array_splice($args, 1));
|
|
$this->set($key, $result);
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|