Skip to content

Commit

Permalink
Merge pull request #16 from coderflexx/docblock
Browse files Browse the repository at this point in the history
Enhancements
  • Loading branch information
ousid authored Aug 22, 2022
2 parents 038d421 + dd7ad3b commit ff64911
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/PendingVisit.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function __construct(protected Model $model)
* Set IP attribute
*
* @param string $ip
* @return $this
* @return self
*/
public function withIP(string $ip = null): self
{
Expand All @@ -51,7 +51,7 @@ public function withIP(string $ip = null): self
* Set Session attribute
*
* @param string $session
* @return $this
* @return self
*/
public function withSession(string $session = null): self
{
Expand All @@ -64,7 +64,7 @@ public function withSession(string $session = null): self
* Set Custom Data attribute
*
* @param array $data
* @return $this
* @return self
*/
public function withData(array $data): self
{
Expand All @@ -81,7 +81,7 @@ public function withData(array $data): self
* Set User attribute
*
* @param Model $user
* @return $this
* @return self
*/
public function withUser(Model $user = null): self
{
Expand Down

0 comments on commit ff64911

Please sign in to comment.