Skip to content

Commit 91f83d0

Browse files
mpdudegithub-actions[bot]
authored andcommitted
Fix CS with PHP-CS-Fixer
1 parent 7d87596 commit 91f83d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Functional/TranslatingUnmappedPropertiesTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class TranslatingUnmappedPropertiesTest_Entity
5555
#[Polyglot\TranslationCollection]
5656
protected Collection $translations;
5757

58-
#[ORM\Column(type: "string")]
58+
#[ORM\Column(type: 'string')]
5959
public $mappedText;
6060

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

93-
#[ORM\Column(type: "string")]
93+
#[ORM\Column(type: 'string')]
9494
#[Polyglot\Locale]
9595
private string $locale;
9696

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

100-
#[ORM\Column(type: "string")]
100+
#[ORM\Column(type: 'string')]
101101
private $mappedText;
102102

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

0 commit comments

Comments
 (0)