ViewClearCommand::callSilent()

int callSilent(string $command, array $arguments = array()) Call another console command silently. Parameters string $command array $arguments Return Value int

ViewClearCommand::call()

int call(string $command, array $arguments = array()) Call another console command. Parameters string $command array $arguments Return Value int

ViewClearCommand::anticipate()

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

ViewClearCommand::askWithCompletion()

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

ViewClearCommand

ViewClearCommand class ViewClearCommand extends Command (View source) Methods void __construct(Filesystem $files) Create a new config clear 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 ar

View::__unset()

bool __unset(string $key) Remove a piece of bound data from the view. Parameters string $key Return Value bool

View::__toString()

string __toString() Get the string contents of the view. Return Value string

View::__set()

void __set(string $key, mixed $value) Set a piece of data on the view. Parameters string $key mixed $value Return Value void

View::__isset()

bool __isset(string $key) Check if a piece of data is bound to the view. Parameters string $key Return Value bool

View::withErrors()

$this withErrors(MessageProvider|array $provider) Add validation errors to the view. Parameters MessageProvider|array $provider Return Value $this