Remove unused Terraform templates

This commit is contained in:
Oliver Davies 2024-08-03 10:39:29 +01:00
parent 4938202813
commit 11b72e35d4
4 changed files with 2 additions and 12 deletions

View file

@ -32,8 +32,7 @@ class ConfigurationValidatorTest extends KernelTestCase
?array $extraDatabases,
int $expectedViolationCount,
?string $expectedMessage,
): void
{
): void {
$this->configurationDataDto->database = [
'extra_databases' => $extraDatabases,
'type' => 'mariadb',
@ -219,7 +218,6 @@ class ConfigurationValidatorTest extends KernelTestCase
yield 'laravel' => [ProjectType::Laravel->value, 0, null],
yield 'php-library' => [ProjectType::PHPLibrary->value, 0, null],
yield 'symfony' => [ProjectType::Symfony->value, 0, null],
yield 'terraform' => [ProjectType::Terraform->value, 0, null],
];
}