Merge "Fix documentation problem"

This commit is contained in:
jenkins-bot 2023-09-21 16:07:08 +00:00 committed by Gerrit Code Review
commit c8bf69dd4a
2 changed files with 8 additions and 0 deletions

View file

@ -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 );
}

View file

@ -14,6 +14,10 @@ class HookRunner implements
{
private HookContainer $hookContainer;
/**
* Constructor.
* @param HookContainer $hookContainer
*/
public function __construct( HookContainer $hookContainer ) {
$this->hookContainer = $hookContainer;
}