class Application extends Application implements Application (View source)

Methods

void
__construct( Container $laravel, Dispatcher $events, string $version)

Create a new Artisan console application.

int
call( string $command, array $parameters = array())

Run an Artisan console command by name.

string
output()

Get the output for the last run command.

Command
add( Command $command)

Add a command to the console.

Command
resolve( string $command)

Add a command, resolving through the application.

$this
resolveCommands( array|mixed $commands)

Resolve an array of commands through the application.

getLaravel()

Get the Laravel application instance.

Details

at line line 38
void __construct( Container $laravel, Dispatcher $events, string $version)

Create a new Artisan console application.

Parameters

Container $laravel
Dispatcher $events
string $version

Return Value

void

at line line 56
int call( string $command, array $parameters = array())

Run an Artisan console command by name.

Parameters

string $command
array $parameters

Return Value

int

at line line 76
string output()

Get the output for the last run command.

Return Value

string

at line line 87
Command add( Command $command)

Add a command to the console.

Parameters

Command $command

Return Value

Command

at line line 113
Command resolve( string $command)

Add a command, resolving through the application.

Parameters

string $command

Return Value

Command

at line line 124
$this resolveCommands( array|mixed $commands)

Resolve an array of commands through the application.

Parameters

array|mixed $commands

Return Value

$this

at line line 168
Application getLaravel()

Get the Laravel application instance.

Return Value

Application