### Issue Description If you delete a group leaving a user with no groups, the user is not deleted In VirtualGroups.php in removeGroup function, after: unset($config[$user][$key]); added: ``` if ($config[$user] === []) { unset($config[$user]); } ```
Issue Description
If you delete a group leaving a user with no groups, the user is not deleted
In VirtualGroups.php in removeGroup function, after: unset($config[$user][$key]); added: