Skip to content

Commit c6207b1

Browse files
authored
Merge pull request #12202 from greg0ire/missing-suffix
Add missing "Test" suffix
2 parents 7602a53 + 8c92903 commit c6207b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Doctrine/Tests/ORM/Functional/Ticket/GH12063.php renamed to tests/Doctrine/Tests/ORM/Functional/Ticket/GH12063Test.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use Doctrine\ORM\Mapping\Id;
1212
use Doctrine\Tests\OrmFunctionalTestCase;
1313

14-
class GH12063 extends OrmFunctionalTestCase
14+
class GH12063Test extends OrmFunctionalTestCase
1515
{
1616
protected function setUp(): void
1717
{
@@ -67,7 +67,7 @@ enum GH12063Code: string
6767
class GH12063Association
6868
{
6969
#[Id]
70-
#[Column]
70+
#[Column(length: 3)]
7171
public GH12063Code $code;
7272
}
7373

@@ -80,6 +80,6 @@ class GH12063Entity
8080
public int|null $id = null;
8181

8282
#[ORM\ManyToOne]
83-
#[ORM\JoinColumn(referencedColumnName: 'code')]
83+
#[ORM\JoinColumn(referencedColumnName: 'code', options: ['length' => 3])]
8484
public GH12063Association $association;
8585
}

0 commit comments

Comments
 (0)