@@ -101,7 +101,7 @@ private function processRoutes(Generator $generator, array $routes)
101101 $ routePath = $ generator ->getUri ($ route );
102102
103103 if ($ this ->isClosureRoute ($ route ->getAction ())) {
104- $ this ->warn (sprintf ($ messageFormat , 'Skipping ' , $ routeMethods , $ routePath ). ': Closure routes are not supported. ' );
104+ $ this ->warn (sprintf ($ messageFormat , 'Skipping ' , $ routeMethods , $ routePath ) . ': Closure routes are not supported. ' );
105105 continue ;
106106 }
107107
@@ -112,20 +112,20 @@ private function processRoutes(Generator $generator, array $routes)
112112 }
113113
114114 if (! $ this ->doesControllerMethodExist ($ routeControllerAndMethod )) {
115- $ this ->warn (sprintf ($ messageFormat , 'Skipping ' , $ routeMethods , $ routePath ). ': Controller method does not exist. ' );
115+ $ this ->warn (sprintf ($ messageFormat , 'Skipping ' , $ routeMethods , $ routePath ) . ': Controller method does not exist. ' );
116116 continue ;
117117 }
118118
119119 if (! $ this ->isRouteVisibleForDocumentation ($ routeControllerAndMethod )) {
120- $ this ->warn (sprintf ($ messageFormat , 'Skipping ' , $ routeMethods , $ routePath ). ': @hideFromAPIDocumentation was specified. ' );
120+ $ this ->warn (sprintf ($ messageFormat , 'Skipping ' , $ routeMethods , $ routePath ) . ': @hideFromAPIDocumentation was specified. ' );
121121 continue ;
122122 }
123123
124124 try {
125125 $ parsedRoutes [] = $ generator ->processRoute ($ route , $ routeItem ->getRules ());
126126 $ this ->info (sprintf ($ messageFormat , 'Processed ' , $ routeMethods , $ routePath ));
127127 } catch (\Exception $ exception ) {
128- $ this ->warn (sprintf ($ messageFormat , 'Skipping ' , $ routeMethods , $ routePath ). '- Exception ' . get_class ($ exception ). ' encountered : ' . $ exception ->getMessage ());
128+ $ this ->warn (sprintf ($ messageFormat , 'Skipping ' , $ routeMethods , $ routePath ) . '- Exception ' . get_class ($ exception ) . ' encountered : ' . $ exception ->getMessage ());
129129 }
130130 }
131131
0 commit comments