Apply fixes from StyleCI (#12117)

* Apply fixes from StyleCI

* Disable style check
This commit is contained in:
Jellyfrog
2020-09-21 14:54:51 +02:00
committed by GitHub
parent 8ec9183df5
commit 77c531527c
752 changed files with 6238 additions and 5833 deletions

View File

@@ -14,7 +14,7 @@
use LibreNMS\Authentication\LegacyAuth;
$init_modules = array();
$init_modules = [];
if (php_sapi_name() != 'cli') {
$init_modules[] = 'auth';
}
@@ -22,12 +22,12 @@ require __DIR__ . '/includes/init.php';
if (LegacyAuth::get()->canManageUsers()) {
if (isset($argv[1]) && isset($argv[2]) && isset($argv[3])) {
if (!LegacyAuth::get()->userExists($argv[1])) {
if (! LegacyAuth::get()->userExists($argv[1])) {
if (LegacyAuth::get()->addUser($argv[1], $argv[2], $argv[3], @$argv[4])) {
echo 'User '.$argv[1]." added successfully\n";
echo 'User ' . $argv[1] . " added successfully\n";
}
} else {
echo 'User '.$argv[1]." already exists!\n";
echo 'User ' . $argv[1] . " already exists!\n";
}
} else {
echo "Add User Tool\nUsage: ./adduser.php <username> <password> <level 1-10> [email]\n";