Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use Doctrine\ORM\Mapping\Id;
use Doctrine\Tests\OrmFunctionalTestCase;

class GH12063 extends OrmFunctionalTestCase
class GH12063Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
Expand Down Expand Up @@ -67,7 +67,7 @@ enum GH12063Code: string
class GH12063Association
{
#[Id]
#[Column]
#[Column(length: 3)]
public GH12063Code $code;
}

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

#[ORM\ManyToOne]
#[ORM\JoinColumn(referencedColumnName: 'code')]
#[ORM\JoinColumn(referencedColumnName: 'code', options: ['length' => 3])]
public GH12063Association $association;
}
Loading