Arrilot\Widgets\Test\Support\TestApplicationWrapper::cache PHP 메소드

cache() 공개 메소드

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