diff --git a/src/PendingVisit.php b/src/PendingVisit.php index af3c2f0..7d60500 100644 --- a/src/PendingVisit.php +++ b/src/PendingVisit.php @@ -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 { @@ -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 { @@ -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 { @@ -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 {