Файл: vendor/laravel/framework/src/Illuminate/Support/Facades/Artisan.php
Строк: 110
<?php
namespace IlluminateSupportFacades;
use IlluminateContractsConsoleKernel as ConsoleKernelContract;
/**
* @method static int handle(SymfonyComponentConsoleInputInputInterface $input, SymfonyComponentConsoleOutputOutputInterface|null $output = null)
* @method static void terminate(SymfonyComponentConsoleInputInputInterface $input, int $status)
* @method static void whenCommandLifecycleIsLongerThan(DateTimeInterface|CarbonCarbonInterval|float|int $threshold, callable $handler)
* @method static IlluminateSupportCarbon|null commandStartedAt()
* @method static IlluminateFoundationConsoleClosureCommand command(string $signature, Closure $callback)
* @method static void registerCommand(SymfonyComponentConsoleCommandCommand $command)
* @method static int call(string $command, array $parameters = [], SymfonyComponentConsoleOutputOutputInterface|null $outputBuffer = null)
* @method static IlluminateFoundationBusPendingDispatch queue(string $command, array $parameters = [])
* @method static array all()
* @method static string output()
* @method static void bootstrap()
* @method static void bootstrapWithoutBootingProviders()
* @method static void setArtisan(IlluminateConsoleApplication|null $artisan)
*
* @see IlluminateFoundationConsoleKernel
*/
class Artisan extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return ConsoleKernelContract::class;
}
}