gplx/mediawiki/includes/libs/WRStats/GlobalEntityKey.php

16 lines
200 B
PHP

<?php
namespace Wikimedia\WRStats;
/**
* Entity key with isGlobal=true
*
* @newable
* @since 1.39
*/
class GlobalEntityKey extends EntityKey {
public function isGlobal() {
return true;
}
}