Файл: vendor/laravel/framework/src/Illuminate/Support/Facades/Cache.php
Строк: 159
<?php
namespace IlluminateSupportFacades;
/**
* @method static IlluminateContractsCacheRepository store(string|null $name = null)
* @method static IlluminateContractsCacheRepository driver(string|null $driver = null)
* @method static IlluminateContractsCacheRepository resolve(string $name)
* @method static IlluminateCacheRepository repository(IlluminateContractsCacheStore $store)
* @method static void refreshEventDispatcher()
* @method static string getDefaultDriver()
* @method static void setDefaultDriver(string $name)
* @method static IlluminateCacheCacheManager forgetDriver(array|string|null $name = null)
* @method static void purge(string|null $name = null)
* @method static IlluminateCacheCacheManager extend(string $driver, Closure $callback)
* @method static IlluminateCacheCacheManager setApplication(IlluminateContractsFoundationApplication $app)
* @method static bool has(array|string $key)
* @method static bool missing(string $key)
* @method static mixed get(array|string $key, mixed|Closure $default = null)
* @method static array many(array $keys)
* @method static iterable getMultiple(iterable $keys, mixed $default = null)
* @method static mixed pull(array|string $key, mixed|Closure $default = null)
* @method static bool put(array|string $key, mixed $value, DateTimeInterface|DateInterval|int|null $ttl = null)
* @method static bool set(string $key, mixed $value, null|int|DateInterval $ttl = null)
* @method static bool putMany(array $values, DateTimeInterface|DateInterval|int|null $ttl = null)
* @method static bool setMultiple(iterable $values, null|int|DateInterval $ttl = null)
* @method static bool add(string $key, mixed $value, DateTimeInterface|DateInterval|int|null $ttl = null)
* @method static int|bool increment(string $key, mixed $value = 1)
* @method static int|bool decrement(string $key, mixed $value = 1)
* @method static bool forever(string $key, mixed $value)
* @method static mixed remember(string $key, Closure|DateTimeInterface|DateInterval|int|null $ttl, Closure $callback)
* @method static mixed sear(string $key, Closure $callback)
* @method static mixed rememberForever(string $key, Closure $callback)
* @method static bool forget(string $key)
* @method static bool delete(string $key)
* @method static bool deleteMultiple(iterable $keys)
* @method static bool clear()
* @method static IlluminateCacheTaggedCache tags(array|mixed $names)
* @method static bool supportsTags()
* @method static int|null getDefaultCacheTime()
* @method static IlluminateCacheRepository setDefaultCacheTime(int|null $seconds)
* @method static IlluminateContractsCacheStore getStore()
* @method static IlluminateCacheRepository setStore(IlluminateContractsCacheStore $store)
* @method static IlluminateContractsEventsDispatcher getEventDispatcher()
* @method static void setEventDispatcher(IlluminateContractsEventsDispatcher $events)
* @method static void macro(string $name, object|callable $macro)
* @method static void mixin(object $mixin, bool $replace = true)
* @method static bool hasMacro(string $name)
* @method static void flushMacros()
* @method static mixed macroCall(string $method, array $parameters)
* @method static bool flush()
* @method static string getPrefix()
* @method static IlluminateContractsCacheLock lock(string $name, int $seconds = 0, string|null $owner = null)
* @method static IlluminateContractsCacheLock restoreLock(string $name, string $owner)
*
* @see IlluminateCacheCacheManager
*
* @mixin IlluminateCacheRepository
*/
class Cache extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'cache';
}
}