Skip to content

Commit

Permalink
returntypes
Browse files Browse the repository at this point in the history
  • Loading branch information
bert-w committed Mar 11, 2024
1 parent 9640fed commit 84b922d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/Fixtures/TestUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,37 +11,37 @@ class TestUser extends Model implements Authenticatable

protected $guarded = [];

public function getAuthIdentifierName()
public function getAuthIdentifierName(): string
{
return 'test-user-auth-identifier-name';
}

public function getAuthIdentifier()
public function getAuthIdentifier(): string
{
return 'test-user-auth-identifier';
}

public function getAuthPassword()
public function getAuthPassword(): string
{
return 'test-user-auth-password';
}

public function getAuthPasswordName()
public function getAuthPasswordName(): string
{
return 'test-user-auth-password';
}

public function getRememberToken()
public function getRememberToken(): string
{
return 'test-user-remember-token';
}

public function setRememberToken($value)
public function setRememberToken($value): void
{
//
}

public function getRememberTokenName()
public function getRememberTokenName(): string
{
return 'test-user-remember-token-name';
}
Expand Down

0 comments on commit 84b922d

Please sign in to comment.