class RollbackCommand extends Command (View source)

Traits

Methods

void
__construct( Migrator $migrator)

Create a new migration rollback command instance.

int
run( InputInterface $input, OutputInterface $output)

Run the console command.

from Command
int
call( string $command, array $arguments = array())

Call another console command.

from Command
int
callSilent( string $command, array $arguments = array())

Call another console command silently.

from Command
string|array
argument( string $key = null)

Get the value of a command argument.

from Command
string|array
option( string $key = null)

Get the value of a command option.

from Command
bool
confirm( string $question, bool $default = false)

Confirm a question with the user.

from Command
string
ask( string $question, string $default = null)

Prompt the user for input.

from Command
string
anticipate( string $question, array $choices, string $default = null)

Prompt the user for input with auto completion.

from Command
string
askWithCompletion( string $question, array $choices, string $default = null)

Prompt the user for input with auto completion.

from Command
string
secret( string $question, bool $fallback = true)

Prompt the user for input but hide the answer from the console.

from Command
string
choice( string $question, array $choices, string $default = null, mixed $attempts = null, bool $multiple = null)

Give the user a single choice from an array of answers.

from Command
void
table( array $headers, Arrayable|array $rows, string $style = 'default')

Format input to textual table.

from Command
void
info( string $string)

Write a string as information output.

from Command
void
line( string $string)

Write a string as standard output.

from Command
void
comment( string $string)

Write a string as comment output.

from Command
void
question( string $string)

Write a string as question output.

from Command
void
error( string $string)

Write a string as error output.

from Command
void
warn( string $string)

Write a string as warning output.

from Command
OutputInterface
getOutput()

Get the output implementation.

from Command
getLaravel()

Get the Laravel application instance.

from Command
void
setLaravel( Application $laravel)

Set the Laravel application instance.

from Command
bool
confirmToProceed( string $warning = 'Application In Production!', Closure|bool|null $callback = null)

Confirm before proceeding with the action.

void
fire()

Execute the console command.

Details

at line line 41
void __construct( Migrator $migrator)

Create a new migration rollback command instance.

Parameters

Migrator $migrator

Return Value

void

in Command at line line 130
int run( InputInterface $input, OutputInterface $output)

Run the console command.

Parameters

InputInterface $input
OutputInterface $output

Return Value

int

in Command at line line 160
int call( string $command, array $arguments = array())

Call another console command.

Parameters

string $command
array $arguments

Return Value

int

in Command at line line 176
int callSilent( string $command, array $arguments = array())

Call another console command silently.

Parameters

string $command
array $arguments

Return Value

int

in Command at line line 191
string|array argument( string $key = null)

Get the value of a command argument.

Parameters

string $key

Return Value

string|array

in Command at line line 206
string|array option( string $key = null)

Get the value of a command option.

Parameters

string $key

Return Value

string|array

in Command at line line 222
bool confirm( string $question, bool $default = false)

Confirm a question with the user.

Parameters

string $question
bool $default

Return Value

bool

in Command at line line 234
string ask( string $question, string $default = null)

Prompt the user for input.

Parameters

string $question
string $default

Return Value

string

in Command at line line 247
string anticipate( string $question, array $choices, string $default = null)

Prompt the user for input with auto completion.

Parameters

string $question
array $choices
string $default

Return Value

string

in Command at line line 260
string askWithCompletion( string $question, array $choices, string $default = null)

Prompt the user for input with auto completion.

Parameters

string $question
array $choices
string $default

Return Value

string

in Command at line line 276
string secret( string $question, bool $fallback = true)

Prompt the user for input but hide the answer from the console.

Parameters

string $question
bool $fallback

Return Value

string

in Command at line line 295
string choice( string $question, array $choices, string $default = null, mixed $attempts = null, bool $multiple = null)

Give the user a single choice from an array of answers.

Parameters

string $question
array $choices
string $default
mixed $attempts
bool $multiple

Return Value

string

in Command at line line 312
void table( array $headers, Arrayable|array $rows, string $style = 'default')

Format input to textual table.

Parameters

array $headers
Arrayable|array $rows
string $style

Return Value

void

in Command at line line 329
void info( string $string)

Write a string as information output.

Parameters

string $string

Return Value

void

in Command at line line 340
void line( string $string)

Write a string as standard output.

Parameters

string $string

Return Value

void

in Command at line line 351
void comment( string $string)

Write a string as comment output.

Parameters

string $string

Return Value

void

in Command at line line 362
void question( string $string)

Write a string as question output.

Parameters

string $string

Return Value

void

in Command at line line 373
void error( string $string)

Write a string as error output.

Parameters

string $string

Return Value

void

in Command at line line 384
void warn( string $string)

Write a string as warning output.

Parameters

string $string

Return Value

void

in Command at line line 420
OutputInterface getOutput()

Get the output implementation.

Return Value

OutputInterface

in Command at line line 430
Application getLaravel()

Get the Laravel application instance.

Return Value

Application

in Command at line line 441
void setLaravel( Application $laravel)

Set the Laravel application instance.

Parameters

Application $laravel

Return Value

void

bool confirmToProceed( string $warning = 'Application In Production!', Closure|bool|null $callback = null)

Confirm before proceeding with the action.

Parameters

string $warning
Closure|bool|null $callback

Return Value

bool

at line line 53
void fire()

Execute the console command.

Return Value

void