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();
|
||||
|
||||
}
|
46
vendor/illuminate/contracts/Console/Kernel.php
vendored
Executable file
46
vendor/illuminate/contracts/Console/Kernel.php
vendored
Executable file
@ -0,0 +1,46 @@
|
||||
<?php namespace Illuminate\Contracts\Console;
|
||||
|
||||
interface Kernel {
|
||||
|
||||
/**
|
||||
* Handle an incoming console command.
|
||||
*
|
||||
* @param \Symfony\Component\Console\Input\InputInterface $input
|
||||
* @param \Symfony\Component\Console\Output\OutputInterface $output
|
||||
* @return int
|
||||
*/
|
||||
public function handle($input, $output = null);
|
||||
|
||||
/**
|
||||
* Run an Artisan console command by name.
|
||||
*
|
||||
* @param string $command
|
||||
* @param array $parameters
|
||||
* @return int
|
||||
*/
|
||||
public function call($command, array $parameters = array());
|
||||
|
||||
/**
|
||||
* Queue an Artisan console command by name.
|
||||
*
|
||||
* @param string $command
|
||||
* @param array $parameters
|
||||
* @return int
|
||||
*/
|
||||
public function queue($command, array $parameters = array());
|
||||
|
||||
/**
|
||||
* Get all of the commands registered with the console.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function all();
|
||||
|
||||
/**
|
||||
* Get the output for the last run command.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function output();
|
||||
|
||||
}
|
Reference in New Issue
Block a user