* @copyright Copyright (C) 2026 Moko Consulting. All rights reserved. * @license GNU General Public License version 3 or later; see LICENSE */ defined('_JEXEC') or die; use Joomla\CMS\Installer\InstallerAdapter; class Com_MokoOGInstallerScript { /** * Called after install. * * @param InstallerAdapter $parent Installer adapter * * @return void */ public function install(InstallerAdapter $parent): void { echo '

MokoJoomOpenGraph component installed successfully.

'; } /** * Called after update. * * @param InstallerAdapter $parent Installer adapter * * @return void */ public function update(InstallerAdapter $parent): void { echo '

MokoJoomOpenGraph component updated successfully.

'; } }