ControllerMakeCommand::call()

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

ControllerMakeCommand::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

ControllerMakeCommand::ask()

string ask(string $question, string $default = null) Prompt the user for input. Parameters string $question string $default Return Value string

ControllerMakeCommand::arguments()

array arguments() Get all of the arguments passed to the command. Return Value array

ControllerMakeCommand::argument()

string|array argument(string $key = null) Get the value of a command argument. Parameters string $key Return Value string|array

ControllerMakeCommand::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

ControllerMakeCommand

ControllerMakeCommand class ControllerMakeCommand extends GeneratorCommand (View source) Methods void __construct(Filesystem $files) Create a new controller creator command instance. from GeneratorCommand 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 comm

ControllerInspector deprecated::isRoutable()

bool isRoutable(ReflectionMethod $method) Determine if the given controller method is routable. Parameters ReflectionMethod $method Return Value bool

ControllerInspector deprecated::getVerb()

string getVerb(string $name) Extract the verb from a controller action. Parameters string $name Return Value string

ControllerInspector deprecated::getRoutable()

array getRoutable(string $controller, string $prefix) Get the routable methods for a controller. Parameters string $controller string $prefix Return Value array