phpbb\console\command\reparser\reparse::__construct PHP Method

__construct() public method

Constructor
public __construct ( phpbb\user $user, phpbb\lock\db $reparse_lock, manager $reparser_manager, phpbb\di\service_collection $reparsers )
$user phpbb\user
$reparse_lock phpbb\lock\db
$reparser_manager phpbb\textreparser\manager
$reparsers phpbb\di\service_collection
    public function __construct(\phpbb\user $user, \phpbb\lock\db $reparse_lock, \phpbb\textreparser\manager $reparser_manager, \phpbb\di\service_collection $reparsers)
    {
        require_once __DIR__ . '/../../../../includes/functions_content.php';
        $this->reparse_lock = $reparse_lock;
        $this->reparser_manager = $reparser_manager;
        $this->reparsers = $reparsers;
        parent::__construct($user);
    }