refactor: remove unused method

This commit is contained in:
Oliver Davies 2023-09-25 00:19:06 +01:00
parent cfbdeb375e
commit 578340ca8f

View file

@ -213,15 +213,6 @@ final class CreateListOfFilesToGenerate
return strtoupper($webServer) === WebServer::NGINX->name;
}
private static function isTypeScript(?string $language): bool
{
if (is_null($language)) {
return false;
}
return strtoupper($language) === Language::TYPESCRIPT->name;
}
private static function isPhp(?string $language): bool
{
if (is_null($language)) {