Skip to content

Commit

Permalink
Doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebauman committed Nov 7, 2023
1 parent 0032cc8 commit 30201da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Models/Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public function getDn(): ?string
}

/**
* Set the models distinguished name.
* Set the model's distinguished name.
*/
public function setDn(string $dn = null): static
{
Expand All @@ -167,15 +167,15 @@ public function setDn(string $dn = null): static
}

/**
* A mutator for setting the models distinguished name.
* A mutator for setting the model's distinguished name.
*/
public function setDnAttribute(string $dn): static
{
return $this->setRawAttribute('dn', $dn)->setDn($dn);
}

/**
* A mutator for setting the models distinguished name.
* A mutator for setting the model's distinguished name.
*/
public function setDistinguishedNameAttribute(string $dn): static
{
Expand Down

0 comments on commit 30201da

Please sign in to comment.