Page MenuHomeWickedGov Phorge

BlockUserFactory.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

BlockUserFactory.php

<?php
/**
* @license GPL-2.0-or-later
* @file
*/
namespace MediaWiki\Block;
use MediaWiki\Permissions\Authority;
use MediaWiki\User\UserIdentity;
/**
* @since 1.36
*/
interface BlockUserFactory {
/**
* Create BlockUser
*
* @param BlockTarget|string|UserIdentity $target Target of the block
* @param Authority $performer Performer of the block
* @param string $expiry Expiry of the block (timestamp or 'infinity')
* @param string $reason Reason of the block
* @param array $blockOptions
* @param array $blockRestrictions
* @param array|null $tags Tags that should be assigned to the log entry
*
* @return BlockUser
*/
public function newBlockUser(
$target,
Authority $performer,
string $expiry,
string $reason = '',
array $blockOptions = [],
array $blockRestrictions = [],
$tags = []
): BlockUser;
/**
* Create a BlockUser which updates a specified block
*
* @since 1.44
*
* @param DatabaseBlock $block The block to update
* @param Authority $performer Performer of the block
* @param string $expiry Expiry of the block (timestamp or 'infinity')
* @param string $reason Reason of the block
* @param array $blockOptions
* @param array $blockRestrictions
* @param array|null $tags Tags that should be assigned to the log entry
* @return BlockUser
*/
public function newUpdateBlock(
DatabaseBlock $block,
Authority $performer,
string $expiry,
string $reason = '',
array $blockOptions = [],
array $blockRestrictions = [],
$tags = []
): BlockUser;
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Dec 19, 09:08 (1 d, 11 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
e8/e4/97ec1c856daedf209a941a72fcc4
Default Alt Text
BlockUserFactory.php (1 KB)

Event Timeline