diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2020-12-04 08:39:26 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2020-12-07 15:44:04 +0100 |
commit | 6a7e849090d2a07b65352ed6246999c28f91cd84 (patch) | |
tree | 7456183562d9ebbf7b9053b84b8c092e8aabc910 /tests/lib/Avatar | |
parent | 54ef1a73afebfe66383b35090bdb75fc9ca1711e (diff) | |
download | nextcloud-server-6a7e849090d2a07b65352ed6246999c28f91cd84.tar.gz nextcloud-server-6a7e849090d2a07b65352ed6246999c28f91cd84.zip |
php cs fix
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests/lib/Avatar')
-rw-r--r-- | tests/lib/Avatar/UserAvatarTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Avatar/UserAvatarTest.php b/tests/lib/Avatar/UserAvatarTest.php index 6e13c993e60..31f2a6ebf5b 100644 --- a/tests/lib/Avatar/UserAvatarTest.php +++ b/tests/lib/Avatar/UserAvatarTest.php @@ -82,7 +82,7 @@ class UserAvatarTest extends \Test\TestCase { })); $file->method('getContent') - ->willReturnCallback(function() use (&$data) { + ->willReturnCallback(function () use (&$data) { return $data; }); |