Skip to content

Commit 8a4333d

Browse files
committed
Disable phpunit typehint patch on 4.3 branch
1 parent ea01cd0 commit 8a4333d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Tests/Authorization/AuthorizationCheckerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class AuthorizationCheckerTest extends TestCase
2323
private $authorizationChecker;
2424
private $tokenStorage;
2525

26-
protected function setUp()
26+
protected function setUp(): void
2727
{
2828
$this->authenticationManager = $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterface')->getMock();
2929
$this->accessDecisionManager = $this->getMockBuilder('Symfony\Component\Security\Core\Authorization\AccessDecisionManagerInterface')->getMock();

Tests/Authorization/Voter/VoterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class VoterTest extends TestCase
2020
{
2121
protected $token;
2222

23-
protected function setUp()
23+
protected function setUp(): void
2424
{
2525
$this->token = $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\Token\TokenInterface')->getMock();
2626
}

Tests/Encoder/Argon2iPasswordEncoderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Argon2iPasswordEncoderTest extends TestCase
2323
{
2424
const PASSWORD = 'password';
2525

26-
protected function setUp()
26+
protected function setUp(): void
2727
{
2828
if (!Argon2iPasswordEncoder::isSupported()) {
2929
$this->markTestSkipped('Argon2i algorithm is not supported.');

Tests/Validator/Constraints/UserPasswordValidatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ protected function createValidator()
4646
return new UserPasswordValidator($this->tokenStorage, $this->encoderFactory);
4747
}
4848

49-
protected function setUp()
49+
protected function setUp(): void
5050
{
5151
$user = $this->createUser();
5252
$this->tokenStorage = $this->createTokenStorage($user);

0 commit comments

Comments
 (0)