Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Feb 14, 2024
1 parent 9a0f729 commit 708043a
Showing 1 changed file with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,7 @@ final class TableClassAnnotationTransformer implements ClassAnnotationTransforme
/**
* @var string
*/
<<<<<<< HEAD
private const UNIQUE_CONSTRAINTS_CLASS = 'Doctrine\ORM\Mapping\UniqueConstraint';
=======
private const UNIQUE_CONSTRAINT_CLASS = 'Doctrine\ORM\Mapping\UniqueConstraint';
>>>>>>> c6d0a51 (misc)

public function transform(EntityMapping $entityMapping, PhpDocInfo $classPhpDocInfo): void
{
Expand Down Expand Up @@ -58,11 +54,7 @@ public function transform(EntityMapping $entityMapping, PhpDocInfo $classPhpDocI

$uniqueConstraintDoctrineAnnotationTagValueNodes[] = new ArrayItemNode(
new DoctrineAnnotationTagValueNode(
<<<<<<< HEAD
new IdentifierTypeNode('@\\' . self::UNIQUE_CONSTRAINTS_CLASS),
=======
new IdentifierTypeNode('@\\' . self::UNIQUE_CONSTRAINT_CLASS . ''),
>>>>>>> c6d0a51 (misc)
new IdentifierTypeNode('@\\' . self::UNIQUE_CONSTRAINT_CLASS),
null,
[
new ArrayItemNode(new StringNode($name), 'name'),
Expand Down

0 comments on commit 708043a

Please sign in to comment.