Added vendor/ directory for Composer's installed files
This commit is contained in:
21
vendor/illuminate/contracts/Console/Application.php
vendored
Executable file
21
vendor/illuminate/contracts/Console/Application.php
vendored
Executable file
@ -0,0 +1,21 @@
|
||||
<?php namespace Illuminate\Contracts\Console;
|
||||
|
||||
interface Application {
|
||||
|
||||
/**
|
||||
* Call a console application command.
|
||||
*
|
||||
* @param string $command
|
||||
* @param array $parameters
|
||||
* @return int
|
||||
*/
|
||||
public function call($command, array $parameters = array());
|
||||
|
||||
/**
|
||||
* Get the output from the last command.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function output();
|
||||
|
||||
}
|
Reference in New Issue
Block a user