aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2024-05-02 17:28:29 +0200
committerJosh <josh.t.richards@gmail.com>2024-05-27 10:14:26 -0400
commit61a60137987aa5922534e1eae876b2f6638797e1 (patch)
tree0784dfe2a266d418976cafcd5bb3d72611f0c0ba /apps/user_ldap
parent36cb845f0578d4a8db496cfd782c4567ad3924bf (diff)
downloadnextcloud-server-61a60137987aa5922534e1eae876b2f6638797e1.tar.gz
nextcloud-server-61a60137987aa5922534e1eae876b2f6638797e1.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>
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/User/DeletedUsersIndex.php2
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 {