diff --git a/src/AbstractActiveRecord.php b/src/AbstractActiveRecord.php index b639136fd..f50aa1d8e 100644 --- a/src/AbstractActiveRecord.php +++ b/src/AbstractActiveRecord.php @@ -132,7 +132,7 @@ public function getIsNewRecord(): bool * * @return mixed The old property value. `null` if the property is not loaded before or doesn't exist. * - * {@see hasProperty()} + * @see hasProperty() */ public function oldValue(string $name): mixed { @@ -661,7 +661,7 @@ public function setIsNewRecord(bool $value): void * * @throws InvalidArgumentException If the named property doesn't exist. * - * {@see hasProperty()} + * @see hasProperty() */ public function assignOldValue(string $name, mixed $value): void { diff --git a/src/ActiveRecordInterface.php b/src/ActiveRecordInterface.php index d0f08e990..5bf99e372 100644 --- a/src/ActiveRecordInterface.php +++ b/src/ActiveRecordInterface.php @@ -127,7 +127,7 @@ public function filterValidAliases(ActiveQuery $query): array; * * @return mixed The property value. `null` if the property isn't set or doesn't exist. * - * {@see has()} + * @see hasProperty() */ public function get(string $name): mixed;