From bbf7e4a93649cc6b12b1e64868631c7eb2ae53a3 Mon Sep 17 00:00:00 2001 From: Art4 Date: Sat, 9 Nov 2024 23:56:59 +0000 Subject: [PATCH] Fix code style --- tests/Unit/Util/CryptoTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; });