Skip to content

Commit 1432ec6

Browse files
authored
Merge pull request #7099 from simPod/prim-anno
fix: see PrimaryKeyConstraint annotation
2 parents cafec7c + c812ffd commit 1432ec6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Schema/Index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class Index extends AbstractNamedObject
4545
/** @deprecated Use {@see getType()} and compare with {@see IndexType::UNIQUE} instead. */
4646
protected bool $_isUnique = false;
4747

48-
/** @deprecated Use {@see PrimaryKeyConstraint()} instead. */
48+
/** @deprecated Use {@see PrimaryKeyConstraint} instead. */
4949
protected bool $_isPrimary = false;
5050

5151
/**
@@ -311,7 +311,7 @@ public function isUnique(): bool
311311
return $this->_isUnique;
312312
}
313313

314-
/** @deprecated Use {@see PrimaryKeyConstraint()} instead. */
314+
/** @deprecated Use {@see PrimaryKeyConstraint} instead. */
315315
public function isPrimary(): bool
316316
{
317317
Deprecation::triggerIfCalledFromOutside(

0 commit comments

Comments
 (0)