From: Art4 Date: Sat, 9 Nov 2024 23:56:59 +0000 (+0000) Subject: Fix code style X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bbf7e4a93649cc6b12b1e64868631c7eb2ae53a3;p=friendica.git Fix code style --- diff --git a/tests/Unit/Util/CryptoTest.php b/tests/Unit/Util/CryptoTest.php index 7f6f0fb656..1e728746f2 100644 --- a/tests/Unit/Util/CryptoTest.php +++ b/tests/Unit/Util/CryptoTest.php @@ -18,7 +18,7 @@ class CryptoTest extends TestCase public function testRandomDigitsRandomInt() { $random_int = $this->getFunctionMock('Friendica\Util', 'random_int'); - $random_int->expects($this->any())->willReturnCallback(function($min, $max) { + $random_int->expects($this->any())->willReturnCallback(function ($min, $max) { return 12345678; });