Microweber\Utils\Adapters\Cache\CacheStore::forever PHP Method

forever() public method

Store an item in the cache indefinitely.
public forever ( string $key, mixed $value )
$key string
$value mixed
    public function forever($key, $value)
    {
        return $this->adapter->forever($key, $value);
    }