From dd7ad3b39a5f1d2a7e338c29539834ff89e57adc Mon Sep 17 00:00:00 2001 From: ousid Date: Sun, 21 Aug 2022 23:55:53 +0100 Subject: [PATCH] update docblock return types --- src/PendingVisit.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/PendingVisit.php b/src/PendingVisit.php index b248a34..26ca7ff 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 {