UserManagementServiceInterface.php in Auto Purge Users 8.2
Same filename and directory in other branches
Namespace
Drupal\purge_users\ServicesFile
src/Services/UserManagementServiceInterface.phpView source
<?php
namespace Drupal\purge_users\Services;
use Drupal\user\UserInterface;
/**
* Interface UserManagementServiceInterface.
*/
interface UserManagementServiceInterface {
/**
* Cancel a user and anonymize it.
*
* @param \Drupal\user\UserInterface $user
* The user to block.
* @param string $method
* The cancel method to use.
*/
public function purgeUser(UserInterface $user, string $method);
}
Interfaces
Name | Description |
---|---|
UserManagementServiceInterface | Interface UserManagementServiceInterface. |