diff --git a/src/Facades/ResponseCache.php b/src/Facades/ResponseCache.php index 3744081..d4d6342 100644 --- a/src/Facades/ResponseCache.php +++ b/src/Facades/ResponseCache.php @@ -6,6 +6,14 @@ /** * @method static void clear(array $tags = []) + * @method static void forget(string|array $key) + * @method static bool enabled(\Illuminate\Http\Request $request) + * @method static bool shouldCache(\Illuminate\Http\Request $request, \Symfony\Component\HttpFoundation\Response $response) + * @method static bool shouldBypass(\Illuminate\Http\Request $request) + * @method static \Symfony\Component\HttpFoundation\Response cacheResponse(\Illuminate\Http\Request $request, \Symfony\Component\HttpFoundation\Response $response, ?int $lifetimeInSeconds = null, array $tags = []) + * @method static bool hasBeenCached(\Illuminate\Http\Request $request, array $tags = []) + * @method static \Symfony\Component\HttpFoundation\Response getCachedResponseFor(\Illuminate\Http\Request $request, array $tags = []) + * @method static Spatie\ResponseCache\CacheItemSelector\CacheItemSelector selectCachedItems() */ class ResponseCache extends Facade {