diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-05-02 17:28:29 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-05-30 16:53:47 +0000 |
commit | bb05f26364a6b8922a9ab704f3a3f057fcd0c5ca (patch) | |
tree | bd5ba669a60def4ba8595188ebf99d93203be864 | |
parent | 0cae558fa9703558b4ecc525dc4cc21ee31bbf81 (diff) | |
download | nextcloud-server-bb05f26364a6b8922a9ab704f3a3f057fcd0c5ca.tar.gz nextcloud-server-bb05f26364a6b8922a9ab704f3a3f057fcd0c5ca.zip |
fix: php lint
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
-rw-r--r-- | apps/user_ldap/lib/User/DeletedUsersIndex.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/User/DeletedUsersIndex.php b/apps/user_ldap/lib/User/DeletedUsersIndex.php index 6ed14213d97..a74eb663313 100644 --- a/apps/user_ldap/lib/User/DeletedUsersIndex.php +++ b/apps/user_ldap/lib/User/DeletedUsersIndex.php @@ -56,7 +56,7 @@ class DeletedUsersIndex { $userObjects = []; foreach ($deletedUsers as $user) { - $userObject = new OfflineUser($user, $this->config, $this->mapping, $this->shareManager);; + $userObject = new OfflineUser($user, $this->config, $this->mapping, $this->shareManager); if ($userObject->getLastLogin() > $userObject->getDetectedOn()) { $userObject->unmark(); } else { |