Update
This commit is contained in:
112
_ide_helper.php
112
_ide_helper.php
@@ -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 {}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user