mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ReplaceText
synced 2024-11-23 22:33:48 +00:00
2185037fc9
Rename existing HookRunner to HookHelper and create a new class HookRunner using the name described in core's Hooks.md Bug: T271025 Change-Id: I85e828226d3d259f93ab2a4eb29dd1fe535abc30
17 lines
395 B
PHP
17 lines
395 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\ReplaceText\Tests\Unit;
|
|
|
|
use MediaWiki\Extension\ReplaceText\Hooks\HookRunner;
|
|
use MediaWiki\Tests\HookContainer\HookRunnerTestBase;
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\ReplaceText\Hooks\HookRunner
|
|
*/
|
|
class HookRunnerTest extends HookRunnerTestBase {
|
|
|
|
public static function provideHookRunners() {
|
|
yield HookRunner::class => [ HookRunner::class ];
|
|
}
|
|
}
|