Skip to content

Commit

Permalink
ignore errors for now
Browse files Browse the repository at this point in the history
  • Loading branch information
dmaicher committed Feb 19, 2024
1 parent 83e84e9 commit 1728bb2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Mapper/ORM/DoctrineORMMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,12 @@ private function loadDiscriminatorColumns(ClassMetadata $metadata): void
);
}

/**
* ignored until https://github.com/doctrine/orm/pull/11226 is merged.
*
* @psalm-suppress InvalidArgument
* @phpstan-ignore-next-line
*/
$metadata->setDiscriminatorColumn($arrayDiscriminatorColumns);
}
} catch (\ReflectionException $e) {
Expand Down

0 comments on commit 1728bb2

Please sign in to comment.