Fix coding standard (#3363)

Merged code was not following coding standard. Thus breaking all CI tests.
This commit is contained in:
Alexis Degrugillier
2021-01-12 10:49:46 -05:00
committed by GitHub
parent 6d8b1ba834
commit eb51fd713a

View File

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