Skip to content

Commit 4748f37

Browse files
committed
refactor: remove unused methods
1 parent d136ff7 commit 4748f37

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

src/Entities/User.php

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -230,28 +230,4 @@ public function getAuthPassword(): ?string
230230
{
231231
return $this->password;
232232
}
233-
234-
/**
235-
* Returns the "remember me" token for this user.
236-
*
237-
* @TODO Do we need this method?
238-
*/
239-
public function getRememberToken(): ?string
240-
{
241-
return $this->remember_token;
242-
}
243-
244-
/**
245-
* Sets the "remember-me" token.
246-
*
247-
* @return $this
248-
*
249-
* @TODO Do we need this method?
250-
*/
251-
public function setRememberToken(string $value): self
252-
{
253-
$this->remember_token = $value;
254-
255-
return $this;
256-
}
257233
}

0 commit comments

Comments
 (0)