From 5f9117b9391f970d3acce3f0e6c0ddc5d1c9b626 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 15 May 2025 08:48:13 +0200 Subject: test: Fix coding standards Signed-off-by: Joas Schilling --- tests/lib/AppFramework/Routing/RoutingTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/lib/AppFramework/Routing/RoutingTest.php') diff --git a/tests/lib/AppFramework/Routing/RoutingTest.php b/tests/lib/AppFramework/Routing/RoutingTest.php index 9381423b00c..703e613f790 100644 --- a/tests/lib/AppFramework/Routing/RoutingTest.php +++ b/tests/lib/AppFramework/Routing/RoutingTest.php @@ -360,7 +360,7 @@ class RoutingTest extends \Test\TestCase { $router ->expects($this->exactly(5)) ->method('create') - ->willReturnCallback(function(string $name, string $pattern) use (&$calls) { + ->willReturnCallback(function (string $name, string $pattern) use (&$calls) { $expected = array_shift($calls); $this->assertEquals($expected['name'], $name); $this->assertEquals($expected['pattern'], $pattern); @@ -414,7 +414,7 @@ class RoutingTest extends \Test\TestCase { $router ->expects($this->exactly(5)) ->method('create') - ->willReturnCallback(function(string $name, string $pattern) use (&$calls) { + ->willReturnCallback(function (string $name, string $pattern) use (&$calls) { $expected = array_shift($calls); $this->assertEquals($expected['name'], $name); $this->assertEquals($expected['pattern'], $pattern); -- cgit v1.2.3