purge users

This commit is contained in:
2019-10-22 22:30:54 -05:00
parent 0862183467
commit 3257389188

View File

@@ -56,13 +56,6 @@ class PurgeUsers extends Command
//Setup the esi variable
$esi = new Eseye();
//Attempt to get the server status. Don't want to do anything if the server is down for some reason.
try {
$status = $esi->invoke('get', '/status/');
} catch(RequestFailedException $e) {
return;
}
//Get all of the users from the database
$users = User::all();