Skip to content

Commit

Permalink
Fix CS with PHP-CS-Fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
mpdude authored and github-actions[bot] committed Apr 26, 2024
1 parent 7d87596 commit 91f83d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Functional/TranslatingUnmappedPropertiesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class TranslatingUnmappedPropertiesTest_Entity
#[Polyglot\TranslationCollection]
protected Collection $translations;

#[ORM\Column(type: "string")]
#[ORM\Column(type: 'string')]
public $mappedText;

// (!) This field is unmapped from the ORM point of view
Expand Down Expand Up @@ -90,14 +90,14 @@ class TranslatingUnmappedPropertiesTest_Translation
#[ORM\GeneratedValue]
private ?int $id = null;

#[ORM\Column(type: "string")]
#[ORM\Column(type: 'string')]
#[Polyglot\Locale]
private string $locale;

#[ORM\ManyToOne(targetEntity: TranslatingUnmappedPropertiesTest_Entity::class, inversedBy: 'translations')]
private TranslatingUnmappedPropertiesTest_Entity $entity;

#[ORM\Column(type: "string")]
#[ORM\Column(type: 'string')]
private $mappedText;

// (!) This field is unmapped from the ORM point of view
Expand Down

0 comments on commit 91f83d0

Please sign in to comment.