Skip to content

Commit

Permalink
Merge branch '6.4' into 7.2
Browse files Browse the repository at this point in the history
* 6.4:
  [Validator] Fix incorrect assertion in `WhenTest`
  [DoctrineBridge] Fix deprecation with `doctrine/dbal` ^4.3
  • Loading branch information
nicolas-grekas committed Feb 18, 2025
2 parents 7a183fd + 22df1e8 commit 95bc5dd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Tests/Fixtures/SingleAssociationToIntIdEntity.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\JoinColumn;
use Doctrine\ORM\Mapping\OneToOne;

#[Entity]
class SingleAssociationToIntIdEntity
{
public function __construct(
#[Id, OneToOne(cascade: ['ALL'])]
#[JoinColumn(nullable: false)]
protected SingleIntIdNoToStringEntity $entity,

#[Column(nullable: true)]
Expand Down

0 comments on commit 95bc5dd

Please sign in to comment.