mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ReplaceText
synced 2024-12-18 01:01:03 +00:00
Merge "Fix documentation problem"
This commit is contained in:
commit
c8bf69dd4a
|
@ -12,6 +12,10 @@ use Wikimedia\Rdbms\IResultWrapper;
|
|||
class HookHelper {
|
||||
private HookRunner $hookRunner;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* @param HookContainer $hookContainer
|
||||
*/
|
||||
public function __construct( HookContainer $hookContainer ) {
|
||||
$this->hookRunner = new HookRunner( $hookContainer );
|
||||
}
|
||||
|
|
|
@ -14,6 +14,10 @@ class HookRunner implements
|
|||
{
|
||||
private HookContainer $hookContainer;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
* @param HookContainer $hookContainer
|
||||
*/
|
||||
public function __construct( HookContainer $hookContainer ) {
|
||||
$this->hookContainer = $hookContainer;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue