Skip to content

Commit ffbca5c

Browse files
committed
fix static calling bug
1 parent a2e1472 commit ffbca5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/FilamentFlexibleContentBlockPages.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ public function config(): FilamentFlexibleContentBlockPagesConfig
1414

1515
public function routes(): void
1616
{
17-
$this->config()->getRouteHelper()::defineRoutes();
17+
$this->config()->getRouteHelper()->defineRoutes();
1818
}
1919

2020
public function getUrl(Page $page, ?string $locale = null): string
2121
{
22-
return $this->config()->getRouteHelper()::getUrl($page, $locale);
22+
return $this->config()->getRouteHelper()->getUrl($page, $locale);
2323
}
2424

2525
public function settings(): Settings

0 commit comments

Comments
 (0)