@@ -93,11 +93,11 @@ protected function describeRoute(Route $route, array $options = [])
93
93
['Route Name ' , $ options ['name ' ] ?? '' ],
94
94
['Path ' , $ route ->getPath ()],
95
95
['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 ' ],
101
101
['Class ' , \get_class ($ route )],
102
102
['Defaults ' , $ this ->formatRouterConfig ($ defaults )],
103
103
['Options ' , $ this ->formatRouterConfig ($ route ->getOptions ())],
0 commit comments