Explorar el Código

Fix coding standard (#3363)

Merged code was not following coding standard. Thus breaking all CI tests.
Alexis Degrugillier hace 5 años
padre
commit
eb51fd713a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);
 }