1
0
Fork 0
mirror of synced 2024-10-01 01:37:56 +13:00

feat: linter fixes

This commit is contained in:
Christy Jacob 2023-01-11 17:12:29 +05:30
parent 9f9daf900a
commit 2bc85e4708

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