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