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
5/**
6 * Shared interface for IP or range blocks
7 *
8 * @since 1.44
9 */
10interface BlockTargetWithIp {
11    /**
12     * Get the range as a hexadecimal tuple.
13     *
14     * @return string[]
15     */
16    public function toHexRange();
17}