Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace MediaWiki\Block;
4
5use MediaWiki\User\UserIdentity;
6
7/**
8 * Interface for block targets which can be converted to a UserIdentity.
9 *
10 * @since 1.44
11 */
12interface BlockTargetWithUserIdentity {
13    /**
14     * Get a UserIdentity associated with this target.
15     *
16     * @return UserIdentity
17     */
18    public function getUserIdentity(): UserIdentity;
19}