We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eeb3640 commit 2b8a4eaCopy full SHA for 2b8a4ea
src/Configuration.php
@@ -153,8 +153,8 @@ public function getWindModels(): array
153
public static function getModel(string $model): string
154
{
155
return array_merge(
156
- (new static())->windModels,
157
- (new static())::get()->getWindModels()
+ (new static)->windModels,
+ (new static)::get()->getWindModels()
158
)[$model];
159
}
160
src/WindPlugin.php
@@ -34,7 +34,7 @@ public function register(Panel $panel): void
34
35
public static function make(): static
36
37
- return new self();
+ return new self;
38
39
40
public static function get(): static
0 commit comments