nextcloud/apps/user_ldap/lib/LDAPUtility.php

39 lines
1.2 KiB
PHP
Raw Normal View History

<?php
/**
2016-07-21 16:49:16 +02:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
2016-05-26 19:56:05 +02:00
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
2016-07-21 16:49:16 +02:00
* @author Joas Schilling <coding@schilljs.com>
2016-05-26 19:56:05 +02:00
* @author Lukas Reschke <lukas@statuscode.ch>
2015-03-26 11:44:34 +01:00
* @author Morris Jobke <hey@morrisjobke.de>
*
2015-03-26 11:44:34 +01:00
* @license AGPL-3.0
*
2015-03-26 11:44:34 +01:00
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
2015-03-26 11:44:34 +01:00
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2015-03-26 11:44:34 +01:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
2015-03-26 11:44:34 +01:00
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
2016-05-12 16:17:39 +02:00
namespace OCA\User_LDAP;
abstract class LDAPUtility {
protected $ldap;
/**
* constructor, make sure the subclasses call this one!
* @param ILDAPWrapper $ldapWrapper an instance of an ILDAPWrapper
*/
public function __construct(ILDAPWrapper $ldapWrapper) {
$this->ldap = $ldapWrapper;
}
2013-09-11 19:42:08 +02:00
}