MediaWiki master
LimitOperation.php
Go to the documentation of this file.
1<?php
2
3namespace Wikimedia\WRStats;
4
17 public $condName;
19 public $entityKey;
21 public $amount;
22
28 public function __construct(
29 string $condName,
30 EntityKey $entityKey = null,
31 $amount = 1
32 ) {
33 $this->condName = $condName;
34 $this->entityKey = $entityKey ?? new LocalEntityKey;
35 $this->amount = $amount;
36 }
37}
Base class for entity keys.
Definition EntityKey.php:13
One item in a LimitBatch.
__construct(string $condName, EntityKey $entityKey=null, $amount=1)
Entity key with isGlobal=false.