ソースを参照

Fix coding standard (#3363)

Merged code was not following coding standard. Thus breaking all CI tests.
Alexis Degrugillier 5 年 前
コミット
eb51fd713a
1 ファイル変更1 行追加1 行削除
  1. 1 1
      cli/_cli.php

+ 1 - 1
cli/_cli.php

@@ -17,7 +17,7 @@ Minz_Translate::init('en');
 
 FreshRSS_Context::$isCli = true;
 
-function fail($message, $exitCode=1) {
+function fail($message, $exitCode = 1) {
 	fwrite(STDERR, $message . "\n");
 	die($exitCode);
 }