diff options
author | Joas Schilling <coding@schilljs.com> | 2025-05-15 08:48:13 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2025-05-15 08:48:13 +0200 |
commit | 5f9117b9391f970d3acce3f0e6c0ddc5d1c9b626 (patch) | |
tree | 1295a1f573095d6011c456f23a98a471eba3543b /tests/lib/Authentication/Token/PublicKeyTokenProviderTest.php | |
parent | 57a49a50aa769450436f4ba617423848a9beaa0e (diff) | |
download | nextcloud-server-ci/noid/update-phpunit10.tar.gz nextcloud-server-ci/noid/update-phpunit10.zip |
test: Fix coding standardsci/noid/update-phpunit10
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/lib/Authentication/Token/PublicKeyTokenProviderTest.php')
-rw-r--r-- | tests/lib/Authentication/Token/PublicKeyTokenProviderTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Authentication/Token/PublicKeyTokenProviderTest.php b/tests/lib/Authentication/Token/PublicKeyTokenProviderTest.php index e8de7012f2d..dc6ec7c7f3e 100644 --- a/tests/lib/Authentication/Token/PublicKeyTokenProviderTest.php +++ b/tests/lib/Authentication/Token/PublicKeyTokenProviderTest.php @@ -311,7 +311,7 @@ class PublicKeyTokenProviderTest extends TestCase { $this->mapper->expects($this->exactly(2)) ->method('invalidate') - ->willReturnCallback(function() use (&$calls) { + ->willReturnCallback(function () use (&$calls) { $expected = array_shift($calls); $this->assertEquals($expected, func_get_args()); }); @@ -350,7 +350,7 @@ class PublicKeyTokenProviderTest extends TestCase { ]; $this->mapper->expects($this->exactly(4)) ->method('invalidateOld') - ->willReturnCallback(function() use (&$calls) { + ->willReturnCallback(function () use (&$calls) { $expected = array_shift($calls); $this->assertEquals($expected, func_get_args()); }); |