diff options
author | Joas Schilling <coding@schilljs.com> | 2020-06-26 16:16:06 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2020-06-26 16:16:06 +0200 |
commit | f8641a6e55cd0c9969bb7fc08bf89ddffe43663b (patch) | |
tree | 515943c086030f003be9cc934d77e21811f1678d /apps/theming | |
parent | be5176076e08e73354ad44493b65d86aade2ad6e (diff) | |
download | nextcloud-server-f8641a6e55cd0c9969bb7fc08bf89ddffe43663b.tar.gz nextcloud-server-f8641a6e55cd0c9969bb7fc08bf89ddffe43663b.zip |
Fix PHP CS
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/theming')
-rw-r--r-- | apps/theming/tests/CapabilitiesTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
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); }); |