Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
GlobalEntityKey | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
isGlobal | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | namespace Wikimedia\WRStats; |
4 | |
5 | /** |
6 | * Entity key with isGlobal=true |
7 | * |
8 | * @newable |
9 | * @since 1.39 |
10 | */ |
11 | class GlobalEntityKey extends EntityKey { |
12 | public function isGlobal() { |
13 | return true; |
14 | } |
15 | } |