Skip to content

Commit 67cde8d

Browse files
committed
add void to expected user fixtures
1 parent c9792c4 commit 67cde8d

6 files changed

+6
-6
lines changed

tests/Security/fixtures/expected/UserEntityWithEmailAsIdentifier.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function setPassword(string $password): static
9090
/**
9191
* @see UserInterface
9292
*/
93-
public function eraseCredentials()
93+
public function eraseCredentials(): void
9494
{
9595
// If you store any temporary, sensitive data on the user, clear it here
9696
// $this->plainPassword = null;

tests/Security/fixtures/expected/UserEntityWithUser_IdentifierAsIdentifier.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function setPassword(string $password): static
8585
/**
8686
* @see UserInterface
8787
*/
88-
public function eraseCredentials()
88+
public function eraseCredentials(): void
8989
{
9090
// If you store any temporary, sensitive data on the user, clear it here
9191
// $this->plainPassword = null;

tests/Security/fixtures/expected/UserEntityWithoutPassword.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function setRoles(array $roles): static
6363
/**
6464
* @see UserInterface
6565
*/
66-
public function eraseCredentials()
66+
public function eraseCredentials(): void
6767
{
6868
// If you store any temporary, sensitive data on the user, clear it here
6969
// $this->plainPassword = null;

tests/Security/fixtures/expected/UserModelWithEmailAsIdentifier.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function setPassword(string $password): static
7575
/**
7676
* @see UserInterface
7777
*/
78-
public function eraseCredentials()
78+
public function eraseCredentials(): void
7979
{
8080
// If you store any temporary, sensitive data on the user, clear it here
8181
// $this->plainPassword = null;

tests/Security/fixtures/expected/UserModelWithPassword.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public function setPassword(string $password): static
7070
/**
7171
* @see UserInterface
7272
*/
73-
public function eraseCredentials()
73+
public function eraseCredentials(): void
7474
{
7575
// If you store any temporary, sensitive data on the user, clear it here
7676
// $this->plainPassword = null;

tests/Security/fixtures/expected/UserModelWithoutPassword.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function setRoles(array $roles): static
4949
/**
5050
* @see UserInterface
5151
*/
52-
public function eraseCredentials()
52+
public function eraseCredentials(): void
5353
{
5454
// If you store any temporary, sensitive data on the user, clear it here
5555
// $this->plainPassword = null;

0 commit comments

Comments
 (0)