Файл: vendor/laravel/framework/src/Illuminate/Support/Facades/Pipeline.php
Строк: 72
<?php
namespace IlluminateSupportFacades;
/**
* @method static IlluminatePipelinePipeline send(mixed $passable)
* @method static IlluminatePipelinePipeline through(array|mixed $pipes)
* @method static IlluminatePipelinePipeline pipe(array|mixed $pipes)
* @method static IlluminatePipelinePipeline via(string $method)
* @method static mixed then(Closure $destination)
* @method static mixed thenReturn()
* @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)
*
* @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';
}
}