From fe00757ca7214f9225eda4b7a95ee853ca2e3d0f Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 2 Feb 2026 07:31:00 -0500 Subject: [PATCH] chore: fixup CryptoWrappingTest.php from review feedback Signed-off-by: Josh --- tests/lib/Session/CryptoWrappingTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/lib/Session/CryptoWrappingTest.php b/tests/lib/Session/CryptoWrappingTest.php index 06acfad5e47..1395ddf9aa1 100644 --- a/tests/lib/Session/CryptoWrappingTest.php +++ b/tests/lib/Session/CryptoWrappingTest.php @@ -39,9 +39,9 @@ class CryptoWrappingTest extends TestCase { private const GENERATED_PASSPHRASE = 'generatedPassphrase'; private const SERVER_PROTOCOL = 'https'; - protected ICrypto|MockObject $crypto; - protected ISecureRandom|MockObject $random; - protected IRequest|MockObject $request; + protected ICrypto&MockObject $crypto; + protected ISecureRandom&MockObject $random; + protected IRequest&MockObject $request; protected function setUp(): void { parent::setUp();