Skip to content

Commit

Permalink
Fix docs [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Sep 12, 2024
1 parent 0639d58 commit 6596c95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/AbstractActiveRecord.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion src/ActiveRecordInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 6596c95

Please sign in to comment.