Skip to content

Commit 3815106

Browse files
committed
wip
1 parent 8b14913 commit 3815106

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

src/Symfony/Component/Security/Core/Tests/Signature/SignatureHasherTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ class SignatureHasherTest extends TestCase
3636
*/
3737
public function testComputeSignatureHash(mixed $arbitraryValue, array $signatureProperties, bool $useDummyHasher, string $expectedHash)
3838
{
39-
if (!class_exists(PropertyAccessor::class)) {
40-
$this->markTestSkipped('PropertyAccessor is not available.');
41-
}
39+
// if (!class_exists(PropertyAccessor::class)) {
40+
// $this->markTestSkipped('PropertyAccessor is not available.');
41+
// }
4242

4343
$user = new DummyUserWithProperties(self::USER_IDENTIFIER, $arbitraryValue);
4444

@@ -84,9 +84,9 @@ public function providerComputeSignatureHash(): array
8484
*/
8585
public function testComputeSignatureHashFailure(mixed $arbitraryValue, array $signatureProperties, string $expectedException, string $expectedExceptionMessage)
8686
{
87-
if (!class_exists(PropertyAccessor::class)) {
88-
$this->markTestSkipped('PropertyAccessor is not available.');
89-
}
87+
// if (!class_exists(PropertyAccessor::class)) {
88+
// $this->markTestSkipped('PropertyAccessor is not available.');
89+
// }
9090

9191
$user = new DummyUserWithProperties(self::USER_IDENTIFIER, $arbitraryValue);
9292

src/Symfony/Component/Security/Core/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"symfony/deprecation-contracts": "^2.5|^3",
2121
"symfony/event-dispatcher-contracts": "^2.5|^3",
2222
"symfony/service-contracts": "^2.5|^3",
23-
"symfony/password-hasher": "^6.4|^7.0"
23+
"symfony/password-hasher": "^6.4|^7.0",
24+
"symfony/property-access": "^6.0|^7.0"
2425
},
2526
"require-dev": {
2627
"psr/container": "^1.1|^2.0",

0 commit comments

Comments
 (0)