jcb-compiler/src/05744dd3-4030-4cf8-8dda-a93ab809b473/code.php

38 lines
885 B
PHP
Raw Permalink 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;
2024-05-26 15:39:23 +00:00
use VastDevelopmentMethod\Joomla\Interfaces\ModelInterface;
2024-04-12 17:17:32 +00:00
use VDM\Joomla\Componentbuilder\Power\Model\Load as ExtendingLoad;
2024-04-12 15:17:05 +00:00
/**
* Joomla Power Model Load
*
* @since 3.2.0
*/
2024-04-12 17:17:32 +00:00
final class Load extends ExtendingLoad 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';
}
}