Application.php 517 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Illuminate\Contracts\Console;
  3. interface Application
  4. {
  5. /**
  6. * Run an Artisan console command by name.
  7. *
  8. * @param string $command
  9. * @param array $parameters
  10. * @param \Symfony\Component\Console\Output\OutputInterface|null $outputBuffer
  11. * @return int
  12. */
  13. public function call($command, array $parameters = [], $outputBuffer = null);
  14. /**
  15. * Get the output from the last command.
  16. *
  17. * @return string
  18. */
  19. public function output();
  20. }