tests pass!

This commit is contained in:
2025-04-07 19:06:37 +01:00
parent a5854c7a04
commit e8c8eeab18
8 changed files with 33 additions and 27 deletions

View File

@@ -37,7 +37,7 @@ class Provider extends Model
public function service(): ?ServerProviderService
{
return match ($this->type) {
ProviderType::HETZNER => app(HetznerService::class, ['provider' => $this]),
ProviderType::HETZNER => app(HetznerService::class)->forProvider($this),
default => null,
};
}