Skip to content

Commit

Permalink
Removing default value for $classesPath property (#125)
Browse files Browse the repository at this point in the history
Addresses #124
  • Loading branch information
dcarbone committed Jul 9, 2024
1 parent 911ce35 commit fc63c0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [];
Expand Down Expand Up @@ -274,4 +274,4 @@ public function listVersions(): array
{
return array_keys($this->versions);
}
}
}

0 comments on commit fc63c0c

Please sign in to comment.