PHP Class REBELinBLUE\Deployer\Console\Kernel

Inheritance: extends Illuminate\Foundation\Console\Kernel
Mostrar archivo Open project: rebelinblue/deployer

Protected Properties

Property Type Description
$commands array The Artisan commands provided by your application.
$customBooters array The custom bootstrappers like Logging or Environment detector.
$disabledBooters array Disable bootstrapper list.

Public Methods

Method Description
bootstrap ( ) Bootstrap the application for artisan commands.

Protected Methods

Method Description
bootstrappers ( ) : array Get the bootstrap classes for the application.
schedule ( Illuminate\Console\Scheduling\Schedule $schedule ) Define the application's command schedule.

Method Details

bootstrap() public method

Bootstrap the application for artisan commands.
public bootstrap ( )

bootstrappers() protected method

Get the bootstrap classes for the application.
protected bootstrappers ( ) : array
return array

schedule() protected method

Define the application's command schedule.
protected schedule ( Illuminate\Console\Scheduling\Schedule $schedule )
$schedule Illuminate\Console\Scheduling\Schedule

Property Details

$commands protected_oe property

The Artisan commands provided by your application.
protected array $commands
return array

$customBooters protected_oe property

The custom bootstrappers like Logging or Environment detector.
protected array $customBooters
return array

$disabledBooters protected_oe property

Disable bootstrapper list.
protected array $disabledBooters
return array