composer package updates
[openemr.git] / vendor / illuminate / support / Facades / Artisan.php
blob8be0b5c7e63c0b4dbe23e177a15dab74ffbcc7b5
1 <?php
3 namespace Illuminate\Support\Facades;
5 use Illuminate\Contracts\Console\Kernel as ConsoleKernelContract;
7 /**
8 * @method static int handle(\Symfony\Component\Console\Input\InputInterface $input, \Symfony\Component\Console\Output\OutputInterface $output = null)
9 * @method static int call(string $command, array $parameters = [], $outputBuffer = null)
10 * @method static int queue(string $command, array $parameters = [])
11 * @method static array all()
12 * @method static string output()
14 * @see \Illuminate\Contracts\Console\Kernel
16 class Artisan extends Facade
18 /**
19 * Get the registered name of the component.
21 * @return string
23 protected static function getFacadeAccessor()
25 return ConsoleKernelContract::class;