Файл: vendor/laravel/framework/src/Illuminate/Support/Facades/Context.php
Строк: 140
<?php
namespace IlluminateSupportFacades;
/**
* @method static bool has(string $key)
* @method static bool missing(string $key)
* @method static bool hasHidden(string $key)
* @method static bool missingHidden(string $key)
* @method static array all()
* @method static array allHidden()
* @method static mixed get(string $key, mixed $default = null)
* @method static mixed getHidden(string $key, mixed $default = null)
* @method static mixed pull(string $key, mixed $default = null)
* @method static mixed pullHidden(string $key, mixed $default = null)
* @method static array only(array $keys)
* @method static array onlyHidden(array $keys)
* @method static array except(array $keys)
* @method static array exceptHidden(array $keys)
* @method static IlluminateLogContextRepository add(string|array $key, mixed $value = null)
* @method static IlluminateLogContextRepository addHidden(string|array $key, mixed $value = null)
* @method static mixed remember(string $key, mixed $value)
* @method static mixed rememberHidden(string $key, mixed $value)
* @method static IlluminateLogContextRepository forget(string|array $key)
* @method static IlluminateLogContextRepository forgetHidden(string|array $key)
* @method static IlluminateLogContextRepository addIf(string $key, mixed $value)
* @method static IlluminateLogContextRepository addHiddenIf(string $key, mixed $value)
* @method static IlluminateLogContextRepository push(string $key, mixed ...$values)
* @method static mixed pop(string $key)
* @method static IlluminateLogContextRepository pushHidden(string $key, mixed ...$values)
* @method static mixed popHidden(string $key)
* @method static IlluminateLogContextRepository increment(string $key, int $amount = 1)
* @method static IlluminateLogContextRepository decrement(string $key, int $amount = 1)
* @method static bool stackContains(string $key, mixed $value, bool $strict = false)
* @method static bool hiddenStackContains(string $key, mixed $value, bool $strict = false)
* @method static mixed scope(callable $callback, array $data = [], array $hidden = [])
* @method static bool isEmpty()
* @method static IlluminateLogContextRepository dehydrating(callable $callback)
* @method static IlluminateLogContextRepository hydrated(callable $callback)
* @method static IlluminateLogContextRepository handleUnserializeExceptionsUsing(callable|null $callback)
* @method static IlluminateLogContextRepository flush()
* @method static IlluminateLogContextRepository|mixed when(Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)
* @method static IlluminateLogContextRepository|mixed unless(Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)
* @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 IlluminateDatabaseEloquentModel restoreModel(IlluminateContractsDatabaseModelIdentifier $value)
*
* @see IlluminateLogContextRepository
*/
class Context extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return IlluminateLogContextRepository::class;
}
}