Файл: system/vendor/illuminate/support/Facades/Artisan.php
Строк: 80
<?php
namespace IlluminateSupportFacades;
use IlluminateContractsConsoleKernel as ConsoleKernelContract;
/**
* @method static int handle(SymfonyComponentConsoleInputInputInterface $input, SymfonyComponentConsoleOutputOutputInterface|null $output = null)
* @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 terminate(SymfonyComponentConsoleInputInputInterface $input, int $status)
* @method static IlluminateFoundationConsoleClosureCommand command(string $command, callable $callback)
*
* @see IlluminateContractsConsoleKernel
*/
class Artisan extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return ConsoleKernelContract::class;
}
}