This commit is contained in:
ct
2025-06-13 11:35:18 +08:00
parent 7ffa3d9ca0
commit 53690753c6
42 changed files with 4638 additions and 991 deletions

View File

@@ -23885,6 +23885,117 @@ public static function setSiteName($name)
}
}
namespace Spatie\ResponseCache\Facades {
/**
*
*
*/
class ResponseCache {
/**
*
*
* @static
*/
public static function enabled($request)
{
/** @var \Spatie\ResponseCache\ResponseCache $instance */
return $instance->enabled($request);
}
/**
*
*
* @static
*/
public static function shouldCache($request, $response)
{
/** @var \Spatie\ResponseCache\ResponseCache $instance */
return $instance->shouldCache($request, $response);
}
/**
*
*
* @static
*/
public static function shouldBypass($request)
{
/** @var \Spatie\ResponseCache\ResponseCache $instance */
return $instance->shouldBypass($request);
}
/**
*
*
* @static
*/
public static function cacheResponse($request, $response, $lifetimeInSeconds = null, $tags = [])
{
/** @var \Spatie\ResponseCache\ResponseCache $instance */
return $instance->cacheResponse($request, $response, $lifetimeInSeconds, $tags);
}
/**
*
*
* @static
*/
public static function hasBeenCached($request, $tags = [])
{
/** @var \Spatie\ResponseCache\ResponseCache $instance */
return $instance->hasBeenCached($request, $tags);
}
/**
*
*
* @static
*/
public static function getCachedResponseFor($request, $tags = [])
{
/** @var \Spatie\ResponseCache\ResponseCache $instance */
return $instance->getCachedResponseFor($request, $tags);
}
/**
*
*
* @static
*/
public static function clear($tags = [])
{
/** @var \Spatie\ResponseCache\ResponseCache $instance */
return $instance->clear($tags);
}
/**
*
*
* @param string|array $uris
* @param string[] $tags
* @return \Spatie\ResponseCache\ResponseCache
* @static
*/
public static function forget($uris, $tags = [])
{
/** @var \Spatie\ResponseCache\ResponseCache $instance */
return $instance->forget($uris, $tags);
}
/**
*
*
* @static
*/
public static function selectCachedItems()
{
/** @var \Spatie\ResponseCache\ResponseCache $instance */
return $instance->selectCachedItems();
}
}
}
namespace Vinkla\Hashids\Facades {
/**
*
@@ -29323,6 +29434,7 @@ class SEOMeta extends \Artesaos\SEOTools\Facades\SEOMeta {}
class Twitter extends \Artesaos\SEOTools\Facades\TwitterCard {}
class OpenGraph extends \Artesaos\SEOTools\Facades\OpenGraph {}
class Horizon extends \Laravel\Horizon\Horizon {}
class ResponseCache extends \Spatie\ResponseCache\Facades\ResponseCache {}
class Hashids extends \Vinkla\Hashids\Facades\Hashids {}
}