jcb-compiler/src/9206082e-a3f7-472e-98b2-de90d06cbdcd/code.php

39 lines
889 B
PHP
Raw Normal View History

2024-04-12 15:17:05 +00:00
<?php
/**
* @package Joomla.Component.Builder
*
* @created 4th September, 2022
* @author Llewellyn van der Merwe <https://dev.vdm.io>
* @git Joomla Component Builder <https://git.vdm.dev/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 VDM\Joomla\Interfaces\ModelInterface;
2024-04-12 17:17:32 +00:00
use VDM\Joomla\Componentbuilder\Power\Model\Upsert as ExtendingUpsert;
2024-04-12 15:17:05 +00:00
/**
* Joomla Power Model Update or Insert
*
* @since 3.2.0
*/
2024-04-12 17:17:32 +00:00
final class Upsert extends ExtendingUpsert implements ModelInterface
2024-04-12 15:17:05 +00:00
{
/**
* Get the current active table
*
* @return string
* @since 3.2.0
*/
protected function getTable(): string
{
return 'joomla_power';
}
}