We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 887f28b commit f69aee8Copy full SHA for f69aee8
src/Entities/RouteInfo.php
@@ -73,7 +73,7 @@ private function getMethods()
73
{
74
// Laravel <5.4
75
if (method_exists($this->route, 'getMethods')) {
76
- $this->route->getMethods();
+ return $this->route->getMethods();
77
}
78
// Laravel 5.4+
79
return $this->route->methods();
0 commit comments