feat: linter fixes

This commit is contained in:
Christy Jacob
2023-01-11 17:12:29 +05:30
parent 9f9daf900a
commit 2bc85e4708
+1 -1
View File
@@ -80,7 +80,7 @@ App::post('/v1/account/invite')
$whitelistCodes = (!empty(App::getEnv('_APP_CONSOLE_WHITELIST_CODES', null))) ? \explode(',', App::getEnv('_APP_CONSOLE_WHITELIST_CODES', null)) : [];
if (!empty($whitelistCodes) && !\in_array($code, $whitelistCodes)) {
throw new Exception(Exception::USER_CODE_INVALID);
throw new Exception(Exception::USER_CODE_INVALID);
}
}