@@ -40,7 +40,7 @@ class Routes extends RouteListCommand
4040    /** 
4141     * Create a new routes command instance. 
4242     * 
43-      * @param \Dingo\Api\Routing\Router   $router 
43+      * @param \Dingo\Api\Routing\Router $router 
4444     * 
4545     * @return void 
4646     */ 
@@ -71,7 +71,7 @@ protected function getRoutes()
7171                    'action '     => $ route ->getActionName (),
7272                    'protected '  => $ this  ->routeHasAuthMiddleware ($ route ) ? 'Yes '  : 'No ' ,
7373                    'versions '   => implode (',  ' , $ route ->versions ()),
74-                     'scopes '     => implode (',  ' , $ route ->scopes ())
74+                     'scopes '     => implode (',  ' , $ route ->scopes ()), 
7575                ]);
7676            }
7777        }
@@ -143,7 +143,7 @@ protected function getOptions()
143143                ['versions ' , null , InputOption::VALUE_IS_ARRAY  | InputOption::VALUE_OPTIONAL , 'Filter the routes by version ' ],
144144                ['scopes ' , 'S ' , InputOption::VALUE_IS_ARRAY  | InputOption::VALUE_OPTIONAL , 'Filter the routes by scopes ' ],
145145                ['protected ' , null , InputOption::VALUE_NONE , 'Filter the protected routes ' ],
146-                 ['unprotected ' , null , InputOption::VALUE_NONE , 'Filter the unprotected routes ' ]
146+                 ['unprotected ' , null , InputOption::VALUE_NONE , 'Filter the unprotected routes ' ], 
147147            ]
148148        );
149149    }
0 commit comments