Artisan.php 777B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. use Illuminate\Contracts\Console\Kernel as ConsoleKernelContract;
  4. /**
  5. * @method static int handle(\Symfony\Component\Console\Input\InputInterface $input, \Symfony\Component\Console\Output\OutputInterface $output = null)
  6. * @method static int call(string $command, array $parameters = [], $outputBuffer = null)
  7. * @method static int queue(string $command, array $parameters = [])
  8. * @method static array all()
  9. * @method static string output()
  10. *
  11. * @see \Illuminate\Contracts\Console\Kernel
  12. */
  13. class Artisan extends Facade
  14. {
  15. /**
  16. * Get the registered name of the component.
  17. *
  18. * @return string
  19. */
  20. protected static function getFacadeAccessor()
  21. {
  22. return ConsoleKernelContract::class;
  23. }
  24. }