Skip to content

Commit 6b05546

Browse files
authored
Removed action from SymfonyRoute options (#35542)
1 parent a5582b7 commit 6b05546

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Routing/Route.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1103,7 +1103,7 @@ public function toSymfonyRoute()
11031103
{
11041104
return new SymfonyRoute(
11051105
preg_replace('/\{(\w+?)\?\}/', '{$1}', $this->uri()), $this->getOptionalParameterNames(),
1106-
$this->wheres, ['utf8' => true, 'action' => $this->action],
1106+
$this->wheres, ['utf8' => true],
11071107
$this->getDomain() ?: '', [], $this->methods
11081108
);
11091109
}

0 commit comments

Comments
 (0)