2017-02-17 12:45:33 -05:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2017-02-17 12:45:33 -05:00
|
|
|
/**
|
2024-05-29 05:32:54 -04:00
|
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2017-02-17 12:45:33 -05:00
|
|
|
*/
|
|
|
|
|
namespace OCA\User_LDAP\Migration;
|
|
|
|
|
|
2020-10-22 05:25:33 -04:00
|
|
|
use OCA\User_LDAP\Group_Proxy;
|
2017-02-17 12:45:33 -05:00
|
|
|
use OCA\User_LDAP\Mapping\GroupMapping;
|
2024-02-08 05:52:40 -05:00
|
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
2017-02-17 12:45:33 -05:00
|
|
|
|
|
|
|
|
class UUIDFixGroup extends UUIDFix {
|
2024-02-08 05:52:40 -05:00
|
|
|
public function __construct(ITimeFactory $time, GroupMapping $mapper, Group_Proxy $proxy) {
|
|
|
|
|
parent::__construct($time);
|
2017-02-17 12:45:33 -05:00
|
|
|
$this->mapper = $mapper;
|
2020-10-22 05:25:33 -04:00
|
|
|
$this->proxy = $proxy;
|
2017-02-17 12:45:33 -05:00
|
|
|
}
|
|
|
|
|
}
|