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

16 lines
201 B
PHP

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