@@ -87,11 +87,11 @@ protected function describeRoute(Route $route, array $options = [])
8787 ['Route Name ' , $ options ['name ' ] ?? '' ],
8888 ['Path ' , $ route ->getPath ()],
8989 ['Path Regex ' , $ route ->compile ()->getRegex ()],
90- ['Host ' , ( '' !== $ route ->getHost () ? $ route ->getHost () : 'ANY ' ) ],
91- ['Host Regex ' , ( '' !== $ route ->getHost () ? $ route ->compile ()->getHostRegex () : '' ) ],
92- ['Scheme ' , ( $ route ->getSchemes () ? implode ('| ' , $ route ->getSchemes ()) : 'ANY ' ) ],
93- ['Method ' , ( $ route ->getMethods () ? implode ('| ' , $ route ->getMethods ()) : 'ANY ' ) ],
94- ['Requirements ' , ( $ route ->getRequirements () ? $ this ->formatRouterConfig ($ route ->getRequirements ()) : 'NO CUSTOM ' ) ],
90+ ['Host ' , '' !== $ route ->getHost () ? $ route ->getHost () : 'ANY ' ],
91+ ['Host Regex ' , '' !== $ route ->getHost () ? $ route ->compile ()->getHostRegex () : '' ],
92+ ['Scheme ' , $ route ->getSchemes () ? implode ('| ' , $ route ->getSchemes ()) : 'ANY ' ],
93+ ['Method ' , $ route ->getMethods () ? implode ('| ' , $ route ->getMethods ()) : 'ANY ' ],
94+ ['Requirements ' , $ route ->getRequirements () ? $ this ->formatRouterConfig ($ route ->getRequirements ()) : 'NO CUSTOM ' ],
9595 ['Class ' , \get_class ($ route )],
9696 ['Defaults ' , $ this ->formatRouterConfig ($ route ->getDefaults ())],
9797 ['Options ' , $ this ->formatRouterConfig ($ route ->getOptions ())],
0 commit comments