Application.php 406 B

12345678910111213141516171819202122
  1. <?php
  2. namespace Illuminate\Contracts\Console;
  3. interface Application
  4. {
  5. /**
  6. * Call a console application command.
  7. *
  8. * @param string $command
  9. * @param array $parameters
  10. * @return int
  11. */
  12. public function call($command, array $parameters = []);
  13. /**
  14. * Get the output from the last command.
  15. *
  16. * @return string
  17. */
  18. public function output();
  19. }