RoutesCommand
class RoutesCommand extends Command (View source)
Properties
protected Application | $laravel | The Laravel application instance. | from Command |
protected InputInterface | $input | The input interface implementation. | from Command |
protected OutputInterface | $output | The output interface implementation. | from Command |
protected string | $name | The console command name. | |
protected string | $description | The console command description. | |
protected Router | $router | The router instance. | |
protected RouteCollection | $routes | An array of all the registered routes. | |
protected array | $headers | The table headers for the command. |
Methods
void | __construct(Router $router) Create a new route command instance. | |
void | specifyParameters() Specify the arguments and options on the command. | from Command |
int | run(InputInterface $input, OutputInterface $output) Run the console command. | from Command |
mixed | execute(InputInterface $input, OutputInterface $output) Execute 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 | 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 |
bool | 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, 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 |
array | getArguments() Get the console command arguments. | from Command |
array | getOptions() Get the console command options. | |
OutputInterface | getOutput() Get the output implementation. | from Command |
Application | getLaravel() Get the Laravel application instance. | from Command |
void | setLaravel(Application $laravel) Set the Laravel application instance. | from Command |
void | fire() Execute the console command. | |
array | getRoutes() Compile the routes into a displayable format. | |
array | getRouteInformation(Route $route) Get the route information for a given route. | |
void | displayRoutes(array $routes) Display the route information on the console. | |
string | getBeforeFilters(Route $route) Get before filters | |
array | getPatternFilters(Route $route) Get all of the pattern filters matching the route. | |
array | getMethodPatterns(string $uri, string $method) Get the pattern filters for a given URI and method. | |
string | getAfterFilters(Route $route) Get after filters | |
array|null | filterRoute(array $route) Filter the route by URI and / or name. |
Details
void __construct(Router $router)
Create a new route command instance.
protected void specifyParameters()
Specify the arguments and options on the command.
int run(InputInterface $input, OutputInterface $output)
Run the console command.
protected mixed execute(InputInterface $input, OutputInterface $output)
Execute the console command.
int call(string $command, array $arguments = array())
Call another console command.
int callSilent(string $command, array $arguments = array())
Call another console command silently.
string|array argument(string $key = null)
Get the value of a command argument.
string|array option(string $key = null)
Get the value of a command option.
bool confirm(string $question, bool $default = false)
Confirm a question with the user.
string ask(string $question, string $default = null)
Prompt the user for input.
string askWithCompletion(string $question, array $choices, string $default = null)
Prompt the user for input with auto completion.
string secret(string $question, bool $fallback = true)
Prompt the user for input but hide the answer from the console.
bool 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.
void table(array $headers, array $rows, string $style = 'default')
Format input to textual table
void info(string $string)
Write a string as information output.
void line(string $string)
Write a string as standard output.
void comment(string $string)
Write a string as comment output.
void question(string $string)
Write a string as question output.
void error(string $string)
Write a string as error output.
protected array getArguments()
Get the console command arguments.
protected array getOptions()
Get the console command options.
OutputInterface getOutput()
Get the output implementation.
Application getLaravel()
Get the Laravel application instance.
void setLaravel(Application $laravel)
Set the Laravel application instance.
void fire()
Execute the console command.
protected array getRoutes()
Compile the routes into a displayable format.
protected array getRouteInformation(Route $route)
Get the route information for a given route.
protected void displayRoutes(array $routes)
Display the route information on the console.
protected string getBeforeFilters(Route $route)
Get before filters
protected array getPatternFilters(Route $route)
Get all of the pattern filters matching the route.
protected array getMethodPatterns(string $uri, string $method)
Get the pattern filters for a given URI and method.
protected string getAfterFilters(Route $route)
Get after filters
protected array|null filterRoute(array $route)
Filter the route by URI and / or name.
© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.3/Illuminate/Foundation/Console/RoutesCommand.html