Browse Source

Fix coding standard (#3363)

Merged code was not following coding standard. Thus breaking all CI tests.
Alexis Degrugillier 5 năm trước cách đây
mục cha
commit
eb51fd713a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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);
 }