We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17890dd commit 4513462Copy full SHA for 4513462
1 file changed
src/Routing/Traits/RunwayRoutes.php
@@ -24,7 +24,9 @@ trait RunwayRoutes
24
25
public function routingModel(): RoutingModel
26
{
27
- $this->routingModel = new RoutingModel($this);
+ if (! $this->routingModel) {
28
+ $this->routingModel = new RoutingModel($this);
29
+ }
30
31
return $this->routingModel;
32
}
0 commit comments