nextcloud/lib/public/LDAP/IDeletionFlagSupport.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
506 B
PHP
Raw Normal View History

2016-07-22 04:46:29 -04:00
<?php
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
2016-07-22 04:46:29 -04:00
*/
namespace OCP\LDAP;
/**
* Interface IDeletionFlagSupport
*
* @since 11.0.0
2016-07-22 04:46:29 -04:00
*/
interface IDeletionFlagSupport {
/**
* Flag record for deletion.
2016-07-27 03:10:35 -04:00
* @param string $uid user id
* @since 11.0.0
2016-07-22 04:46:29 -04:00
*/
public function flagRecord($uid);
/**
* Unflag record for deletion.
2016-07-27 03:10:35 -04:00
* @param string $uid user id
* @since 11.0.0
2016-07-22 04:46:29 -04:00
*/
public function unflagRecord($uid);
}