Файл: vendor/laravel/framework/src/Illuminate/Support/Facades/Pipeline.php
Строк: 96
<?php
namespace IlluminateSupportFacades;
/**
* @method static IlluminatePipelinePipeline send(mixed $passable)
* @method static IlluminatePipelinePipeline through(mixed $pipes)
* @method static IlluminatePipelinePipeline pipe(mixed $pipes)
* @method static IlluminatePipelinePipeline via(string $method)
* @method static mixed then(Closure $destination)
* @method static mixed thenReturn()
* @method static IlluminatePipelinePipeline finally(Closure $callback)
* @method static IlluminatePipelinePipeline withinTransaction(string|null|UnitEnum|false $withinTransaction = null)
* @method static IlluminatePipelinePipeline setContainer(IlluminateContractsContainerContainer $container)
* @method static IlluminatePipelinePipeline|mixed when(Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)
* @method static IlluminatePipelinePipeline|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()
*
* @see IlluminatePipelinePipeline
*/
class Pipeline extends Facade
{
/**
* Indicates if the resolved instance should be cached.
*
* @var bool
*/
protected static $cached = false;
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'pipeline';
}
}