Skip to content

Commit 978a59d

Browse files
committed
code style
1 parent afddcb9 commit 978a59d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/php-unit-tests/src/BaseTestCase/ItopTestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ abstract class ItopTestCase extends KernelTestCase
3737
public const DISABLE_DEPRECATEDCALLSLOG_ERRORHANDLER = true;
3838
public static $DEBUG_UNIT_TEST = false;
3939
protected static $aBackupStaticProperties = [];
40-
public ?array $aLastCurlGetInfo=null;
40+
public ?array $aLastCurlGetInfo = null;
4141
/**
4242
* @link https://docs.phpunit.de/en/9.6/annotations.html#preserveglobalstate PHPUnit `preserveGlobalState` annotation documentation
4343
*
@@ -675,7 +675,7 @@ protected function CallItopUrl($sUrl, ?array $aPostFields = [], ?array $aCurlOpt
675675
//\IssueLog::Info("$sUrl error code:", null, ['error' => curl_error($ch)]);
676676

677677
$info = curl_getinfo($ch);
678-
$this->aLastCurlGetInfo=$info;
678+
$this->aLastCurlGetInfo = $info;
679679
$sErrorMsg = curl_error($ch);
680680
$iErrorCode = curl_errno($ch);
681681
curl_close($ch);

0 commit comments

Comments
 (0)