mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ReplaceText
synced 2024-11-27 16:10:15 +00:00
Fix documentation problem
Change-Id: I5015da83b84b89cd965d97f418a31b0e6116abd3
This commit is contained in:
parent
c0c2d6e2e1
commit
bc85753b87
|
@ -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