@@ -93,11 +93,11 @@ protected function describeRoute(Route $route, array $options = [])
9393 ['Route Name ' , $ options ['name ' ] ?? '' ],
9494 ['Path ' , $ route ->getPath ()],
9595 ['Path Regex ' , $ route ->compile ()->getRegex ()],
96- ['Host ' , ( '' !== $ route ->getHost () ? $ route ->getHost () : 'ANY ' ) ],
97- ['Host Regex ' , ( '' !== $ route ->getHost () ? $ route ->compile ()->getHostRegex () : '' ) ],
98- ['Scheme ' , ( $ route ->getSchemes () ? implode ('| ' , $ route ->getSchemes ()) : 'ANY ' ) ],
99- ['Method ' , ( $ route ->getMethods () ? implode ('| ' , $ route ->getMethods ()) : 'ANY ' ) ],
100- ['Requirements ' , ( $ route ->getRequirements () ? $ this ->formatRouterConfig ($ route ->getRequirements ()) : 'NO CUSTOM ' ) ],
96+ ['Host ' , '' !== $ route ->getHost () ? $ route ->getHost () : 'ANY ' ],
97+ ['Host Regex ' , '' !== $ route ->getHost () ? $ route ->compile ()->getHostRegex () : '' ],
98+ ['Scheme ' , $ route ->getSchemes () ? implode ('| ' , $ route ->getSchemes ()) : 'ANY ' ],
99+ ['Method ' , $ route ->getMethods () ? implode ('| ' , $ route ->getMethods ()) : 'ANY ' ],
100+ ['Requirements ' , $ route ->getRequirements () ? $ this ->formatRouterConfig ($ route ->getRequirements ()) : 'NO CUSTOM ' ],
101101 ['Class ' , \get_class ($ route )],
102102 ['Defaults ' , $ this ->formatRouterConfig ($ defaults )],
103103 ['Options ' , $ this ->formatRouterConfig ($ route ->getOptions ())],
0 commit comments