From 8f175640e97b715a638ebd491888b6ded027ee3a Mon Sep 17 00:00:00 2001 From: Lennart Hengstmengel Date: Fri, 11 Aug 2023 15:05:48 +0200 Subject: [PATCH] removed commented out code --- tools/src/ClassGenerator.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/src/ClassGenerator.php b/tools/src/ClassGenerator.php index ad80e28..ca83e3c 100644 --- a/tools/src/ClassGenerator.php +++ b/tools/src/ClassGenerator.php @@ -66,10 +66,6 @@ public function generateResults(): void $template = new ResultClassTemplate($entity); printf('Generating result class for ' . $template->entity->name . \PHP_EOL); $template->write(true); - - // $template = new AbstractRequestClassTemplate($entity); - // printf('Generating return class for ' . $template->entity->name . \PHP_EOL); - // $template->write(true); } }