for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* WebHemi.
*
* PHP version 7.2
* @copyright 2012 - 2019 Gixx-web (http://www.gixx-web.com)
* @license https://opensource.org/licenses/MIT The MIT License (MIT)
* @link http://www.gixx-web.com
*/
declare(strict_types = 1);
namespace WebHemi\Middleware\Action\Admin\ControlPanel\AddOns;
use RuntimeException;
use WebHemi\Middleware\Action\AbstractMiddlewareAction;
* Class ListAction
class ListAction extends AbstractMiddlewareAction
{
* Gets template map name or template file path.
* @return string
public function getTemplateName() : string
return 'admin-control-panel-add-ons-list';
}
* Gets template data.
* @return array
public function getTemplateData() : array
return [];