wiki.techinc.nl/tests/phpunit/unit/includes/Rest/Handler/HelloHandler.php

20 lines
282 B
PHP
Raw Normal View History

<?php
namespace MediaWiki\Tests\Rest\Handler;
use MediaWiki\Rest\Handler;
/**
* Example handler
* @unstable
*/
class HelloHandler extends Handler {
public function execute() {
return [ 'message' => "Hello!" ];
}
public function needsWriteAccess() {
return false;
}
}