Skip to content

Commit

Permalink
make Tests\Fixtures\App\Model\DummyUser::eraseCredentials() compati…
Browse files Browse the repository at this point in the history
…ble with `Symfony\Component\Security\Core\User\UserInterface::eraseCredentials()`
  • Loading branch information
gdaly committed Mar 8, 2024
1 parent 0c59256 commit 18f9d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Fixtures/app/Model/DummyUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function setUsername(string $username): void
$this->username = $username;
}

public function eraseCredentials()
public function eraseCredentials(): void
{
$this->password = null;
}
Expand Down

0 comments on commit 18f9d61

Please sign in to comment.