From fc63c0cc83fd657cf3ee3902b1fe11013f004cc6 Mon Sep 17 00:00:00 2001 From: Daniel Carbone Date: Tue, 9 Jul 2024 08:29:32 -0500 Subject: [PATCH] Removing default value for $classesPath property (#125) Addresses #124 --- src/Config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Config.php b/src/Config.php index 691d24a2..2878b37f 100644 --- a/src/Config.php +++ b/src/Config.php @@ -43,7 +43,7 @@ class Config private string $schemaPath; /** @var string */ - private string $classesPath = PHPFHIR_DEFAULT_OUTPUT_DIR; + private string $classesPath; /** @var \DCarbone\PHPFHIR\Config\VersionConfig[] */ private array $versions = []; @@ -274,4 +274,4 @@ public function listVersions(): array { return array_keys($this->versions); } -} \ No newline at end of file +}