* @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace VDM\Joomla\Componentbuilder\JoomlaPower\Model; use VastDevelopmentMethod\Joomla\Interfaces\ModelInterface; use VDM\Joomla\Componentbuilder\Power\Model\Upsert as ExtendingUpsert; /** * Joomla Power Model Update or Insert * * @since 3.2.0 */ final class Upsert extends ExtendingUpsert implements ModelInterface { /** * Get the current active table * * @return string * @since 3.2.0 */ protected function getTable(): string { return 'joomla_power'; } }