Autarky\Console\RouteDispatchCommand::configure PHP Method

configure() public method

public configure ( )
    public function configure()
    {
        $this->setName('route:dispatch')->setDescription('Given a URL, see what route is matched')->addArgument('method', InputArgument::REQUIRED, 'HTTP method')->addArgument('path', InputArgument::REQUIRED, 'URL path')->setHelp(<<<'EOS'
This command fakes an HTTP request and returns information about the route that was matched against the request. For example:

	php bin/console.php route:dispatch GET /foo/bar/baz

This example will fake a HTTP GET request to the path /foo/bar/baz.
EOS
);
    }
RouteDispatchCommand