diff options
author | Joas Schilling <coding@schilljs.com> | 2020-06-26 16:16:06 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2020-06-29 12:08:33 +0000 |
commit | b33c074d6e409f96450c25256f43937649168064 (patch) | |
tree | 05a1588844e7719e47cc6eff7b65538747985fb0 /apps/theming | |
parent | 1c2d8faf34e661ce6444b4a1dc257d0c60d6bd94 (diff) | |
download | nextcloud-server-b33c074d6e409f96450c25256f43937649168064.tar.gz nextcloud-server-b33c074d6e409f96450c25256f43937649168064.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); }); |