From 2cd632b17077cd5cba2c08756d2ba937b1c5c84d Mon Sep 17 00:00:00 2001 From: Tom H Anderson Date: Tue, 1 Dec 2020 19:39:16 -0700 Subject: [PATCH] Removed action from SymfonyRoute options --- src/Illuminate/Routing/Route.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Routing/Route.php b/src/Illuminate/Routing/Route.php index 37ba1aaa4236..ad2dd8d7f5bb 100755 --- a/src/Illuminate/Routing/Route.php +++ b/src/Illuminate/Routing/Route.php @@ -1103,7 +1103,7 @@ public function toSymfonyRoute() { return new SymfonyRoute( preg_replace('/\{(\w+?)\?\}/', '{$1}', $this->uri()), $this->getOptionalParameterNames(), - $this->wheres, ['utf8' => true, 'action' => $this->action], + $this->wheres, ['utf8' => true], $this->getDomain() ?: '', [], $this->methods ); }