Metaphore\NoStaleCacheEvent::__construct PHP Method

__construct() public method

public __construct ( Cache $cache, $key, callable $cachedCallable, Ttl $ttl )
$cache Cache
$cachedCallable callable
$ttl Ttl
    public function __construct(Cache $cache, $key, callable $cachedCallable, Ttl $ttl)
    {
        $this->cache = $cache;
        $this->key = $key;
        $this->cachedCallable = $cachedCallable;
        $this->ttl = $ttl;
    }