@@ -22,7 +22,7 @@ |
||
22 | 22 | |
23 | 23 | public static function getPages(?string $pageClass = null): PageCollection |
24 | 24 | { |
25 | - return $pageClass ? static::getFacadeRoot()->filter(function (HydePage $page) use ($pageClass): bool { |
|
25 | + return $pageClass ? static::getFacadeRoot()->filter(function(HydePage $page) use ($pageClass) : bool { |
|
26 | 26 | return $page instanceof $pageClass; |
27 | 27 | }) : static::getFacadeRoot(); |
28 | 28 | } |
@@ -22,7 +22,7 @@ |
||
22 | 22 | |
23 | 23 | public static function getRoutes(?string $pageClass = null): RouteCollection |
24 | 24 | { |
25 | - return $pageClass ? static::getFacadeRoot()->filter(function (Route $route) use ($pageClass): bool { |
|
25 | + return $pageClass ? static::getFacadeRoot()->filter(function(Route $route) use ($pageClass) : bool { |
|
26 | 26 | return $route->getPage() instanceof $pageClass; |
27 | 27 | }) : static::getFacadeRoot(); |
28 | 28 | } |
@@ -44,7 +44,7 @@ |
||
44 | 44 | |
45 | 45 | protected function runDiscovery(): void |
46 | 46 | { |
47 | - $this->kernel->files()->each(function (ProjectFile $file): void { |
|
47 | + $this->kernel->files()->each(function(ProjectFile $file): void { |
|
48 | 48 | if ($file instanceof SourceFile) { |
49 | 49 | $this->addPage($file->model::parse( |
50 | 50 | DiscoveryService::pathToIdentifier($file->model, $file->getPath()) |
@@ -65,7 +65,7 @@ |
||
65 | 65 | { |
66 | 66 | // Scan the source directory, and directories therein, for files that match the model's file extension. |
67 | 67 | foreach (glob($this->kernel->path($pageClass::sourcePath('{*,**/*}')), GLOB_BRACE) as $filepath) { |
68 | - if (! str_starts_with(basename((string) $filepath), '_')) { |
|
68 | + if (!str_starts_with(basename((string) $filepath), '_')) { |
|
69 | 69 | $this->addFile(SourceFile::make($filepath, $pageClass)); |
70 | 70 | } |
71 | 71 | } |
@@ -61,7 +61,7 @@ |
||
61 | 61 | |
62 | 62 | protected function runDiscovery(): void |
63 | 63 | { |
64 | - $this->kernel->pages()->each(function (HydePage $page): void { |
|
64 | + $this->kernel->pages()->each(function(HydePage $page): void { |
|
65 | 65 | $this->addRoute(new Route($page)); |
66 | 66 | }); |
67 | 67 | } |