wiki.techinc.nl/includes/libs/WRStats/GlobalEntityKey.php
Timo Tijhof d1ff49d27d WRStats: Improve various docs
Change-Id: I3c3e9c155cedc347a600cad16301c484e50b6f90
2023-09-21 13:11:47 -07:00

15 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;
}
}