Skip to content

Commit

Permalink
Merge 3.x into 4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
SonataCI authored Dec 19, 2023
2 parents 1936188 + a8a8d16 commit 284d25a
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions tests/Timezone/UserBasedTimezoneDetectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,22 @@ public function __construct(?string $timezone)
$this->timezone = $timezone;
}

public function getPassword(): ?string
/**
* @todo: Remove this method when support for "symfony/security" < 6.0 is dropped.
*
* @return null
*/
public function getPassword()
{
return null;
}

public function getSalt(): ?string
/**
* @todo: Remove this method when support for "symfony/security" < 6.0 is dropped.
*
* @return null
*/
public function getSalt()
{
return null;
}
Expand Down

0 comments on commit 284d25a

Please sign in to comment.