MediaWiki  master
UnblockUserFactory.php
Go to the documentation of this file.
1 <?php
2 
22 namespace MediaWiki\Block;
23 
26 
30 interface UnblockUserFactory {
39  public function newUnblockUser(
40  $target,
41  Authority $performer,
42  string $reason,
43  array $tags = []
44  ): UnblockUser;
45 }
Backend class for unblocking users.
Definition: UnblockUser.php:40
newUnblockUser( $target, Authority $performer, string $reason, array $tags=[])
This interface represents the authority associated the current execution context, such as a web reque...
Definition: Authority.php:37
Interface for objects representing user identity.