Skip to content

Commit

Permalink
Fixed annotations in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienHarper committed Dec 2, 2022
1 parent dfa6985 commit 7c1427b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

/**
* @ORM\Entity
* @ORM\Table('parent_entities')
* @ORM\InheritanceType('SINGLE_TABLE')
* @ORM\DiscriminatorColumn('type', 'string)
* @ORM\DiscriminatorMap(['Dummy' => DummyEntity::class])
* @ORM\Table("parent_entities")
* @ORM\InheritanceType("SINGLE_TABLE")
* @ORM\DiscriminatorColumn(name="type", type="string")
* @ORM\DiscriminatorMap({"Dummy": DummyEntity::class})
*/
#[ORM\Entity]
#[ORM\Table('parent_entities')]
Expand Down

0 comments on commit 7c1427b

Please sign in to comment.