diff options
author | Max Semenik <maxsem.wiki@gmail.com> | 2019-10-05 01:23:33 -0700 |
---|---|---|
committer | Tim Starling <tstarling@wikimedia.org> | 2019-10-14 01:36:21 +0000 |
commit | 1e49759caef8ac2d1ed78dda87e9a142156cb7c1 (patch) | |
tree | 84b4ac4afa2fe5c8f3c050f2f7074776e4947c66 /includes/Rest/SimpleHandler.php | |
parent | 308f3f6851dcec2334973553d5181a1f99a6e947 (diff) | |
download | mediawikicore-1e49759caef8ac2d1ed78dda87e9a142156cb7c1.tar.gz mediawikicore-1e49759caef8ac2d1ed78dda87e9a142156cb7c1.zip |
rest: make SimpleHandler abstract now that HHVM is dead
Change-Id: Iff0d1e1d201c716e0071e715ac8505183f6f75d9
Diffstat (limited to 'includes/Rest/SimpleHandler.php')
-rw-r--r-- | includes/Rest/SimpleHandler.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/includes/Rest/SimpleHandler.php b/includes/Rest/SimpleHandler.php index 3c19e48e876e..f5981915148a 100644 --- a/includes/Rest/SimpleHandler.php +++ b/includes/Rest/SimpleHandler.php @@ -8,11 +8,10 @@ namespace MediaWiki\Rest; * * run() must be declared in the subclass. It cannot be declared as abstract * here because it has a variable parameter list. - * @todo Declare it as abstract after dropping HHVM * * @package MediaWiki\Rest */ -class SimpleHandler extends Handler { +abstract class SimpleHandler extends Handler { public function execute() { $paramSettings = $this->getParamSettings(); $validatedParams = $this->getValidatedParams(); |