Your IP : 216.73.217.142


Current Path : /var/www/consult-e-syn/public_html/components/com_ats/Controller/
Upload File :
Current File : /var/www/consult-e-syn/public_html/components/com_ats/Controller/Post.php

<?php
/**
 * @package   ats
 * @copyright Copyright (c)2011-2022 Nicholas K. Dionysopoulos / Akeeba Ltd
 * @license   GNU General Public License version 3, or later
 */

namespace Akeeba\TicketSystem\Site\Controller;

defined('_JEXEC') or die;

use FOF40\Container\Container;

class Post extends \Akeeba\TicketSystem\Admin\Controller\Post
{
	public function __construct(Container $container, array $config = array())
	{
		$this->cacheableTasks = [];

		parent::__construct($container, $config);
	}

}