From: Joas Schilling Date: Fri, 26 Jun 2020 14:16:06 +0000 (+0200) Subject: Fix PHP CS X-Git-Tag: v20.0.0beta1~356^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F21594%2Fhead;p=nextcloud-server.git Fix PHP CS Signed-off-by: Joas Schilling --- diff --git a/apps/theming/tests/CapabilitiesTest.php b/apps/theming/tests/CapabilitiesTest.php index 216672a881e..3ad31f029ed 100644 --- a/apps/theming/tests/CapabilitiesTest.php +++ b/apps/theming/tests/CapabilitiesTest.php @@ -178,7 +178,7 @@ class CapabilitiesTest extends TestCase { $this->util->expects($this->exactly(3)) ->method('elementColor') ->with($color) - ->willReturnCallback(static function(string $color, bool $brightBackground = true) use ($util) { + ->willReturnCallback(static function (string $color, bool $brightBackground = true) use ($util) { return $util->elementColor($color, $brightBackground); });