Skip to content

Commit

Permalink
Test must work with quoted string.
Browse files Browse the repository at this point in the history
  • Loading branch information
prohalexey committed May 7, 2024
1 parent 0097839 commit 381e605
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Tests/ORM/Functional/Ticket/GH11341Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ class StringAsIntBarEntity extends StringAsIntBaseClass
#[ORM\InheritanceType('SINGLE_TABLE')]
#[ORM\DiscriminatorColumn(name: 'type', type: 'string')]
#[ORM\DiscriminatorMap([
1 => StringFooEntity::class,
2 => StringBarEntity::class,
'1' => StringFooEntity::class,
'2' => StringBarEntity::class,
])]
class StringBaseClass
{
Expand Down

0 comments on commit 381e605

Please sign in to comment.