Arrilot\Widgets\Test\Support\TestApplicationWrapper::cache PHP Method

cache() public method

Wrapper around Cache::remember().
public cache ( $key, $minutes, Closure $callback ) : mixed
$key
$minutes
$callback Closure
return mixed
    public function cache($key, $minutes, Closure $callback)
    {
        return 'Cached output. Key: ' . $key . ', minutes: ' . $minutes;
    }