TikiWiki/tiki-manager

View on GitHub
src/Hooks/InstanceProfileApplyHook.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * @copyright (c) Copyright by authors of the Tiki Manager Project. All Rights Reserved.
 *     See copyright.txt for details and a complete list of authors.
 * @licence Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See LICENSE for details.
 */

namespace TikiManager\Hooks;

use TikiManager\Application\Instance;

class InstanceProfileApplyHook extends TikiCommandHook
{
    public function registerPostHookVars(array $vars)
    {
        parent::registerPostHookVars($vars);

        $this->postHookVars['PROFILE'] = $vars['profile'] ?? ($this->postHookVars['PROFILE'] ?? null);
    }
}