Skip to content

Commit 2b8a4ea

Browse files
atmonshigithub-actions[bot]
authored andcommitted
Fix styling
1 parent eeb3640 commit 2b8a4ea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Configuration.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ public function getWindModels(): array
153153
public static function getModel(string $model): string
154154
{
155155
return array_merge(
156-
(new static())->windModels,
157-
(new static())::get()->getWindModels()
156+
(new static)->windModels,
157+
(new static)::get()->getWindModels()
158158
)[$model];
159159
}
160160
}

src/WindPlugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function register(Panel $panel): void
3434

3535
public static function make(): static
3636
{
37-
return new self();
37+
return new self;
3838
}
3939

4040
public static function get(): static

0 commit comments

Comments
 (0)