@@ -87,11 +87,11 @@ protected function describeRoute(Route $route, array $options = [])
87
87
['Route Name ' , $ options ['name ' ] ?? '' ],
88
88
['Path ' , $ route ->getPath ()],
89
89
['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 ' ],
95
95
['Class ' , \get_class ($ route )],
96
96
['Defaults ' , $ this ->formatRouterConfig ($ route ->getDefaults ())],
97
97
['Options ' , $ this ->formatRouterConfig ($ route ->getOptions ())],
0 commit comments