Open
Description
When using simple form router registration:
$api->get('foo/bar', 'FooController@fooAction');
It's ok.
But, when in a complex scenario, like this:
$api->get('foo/bar', ['middleware' => 'api.auth'], 'FooController@fooAction');
$api->get('foo/bar', ['middleware' => 'api.auth', uses => 'FooController@fooAction']);
The command api:routes only shows Clouse under the Action column again :/ .