Fix code style

This commit is contained in:
Art4 2024-11-09 23:56:59 +00:00
parent 8b500926ee
commit bbf7e4a936

View file

@ -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;
});