UUIDFixUser.php 497 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCA\User_LDAP\Migration;
  7. use OCA\User_LDAP\Mapping\UserMapping;
  8. use OCA\User_LDAP\User_Proxy;
  9. use OCP\AppFramework\Utility\ITimeFactory;
  10. class UUIDFixUser extends UUIDFix {
  11. public function __construct(ITimeFactory $time, UserMapping $mapper, User_Proxy $proxy) {
  12. parent::__construct($time);
  13. $this->mapper = $mapper;
  14. $this->proxy = $proxy;
  15. }
  16. }