Skip to content

Commit

Permalink
Handle the right zero-value (#362)
Browse files Browse the repository at this point in the history
  • Loading branch information
greg0ire authored May 22, 2024
1 parent 6c52964 commit bf7aab0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Persistence/Mapping/Driver/FileDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ abstract protected function loadMappingFile(string $file);
protected function initialize()
{
$this->classCache = [];
if ($this->globalBasename === null) {
if ($this->globalBasename === '') {
return;
}

Expand Down

0 comments on commit bf7aab0

Please sign in to comment.