<?php
/**
 * <%= controllerClassName %>.php
 *
 * TODO: explain more about this component
 *
 * @package		<%= _.slugify(componentName) %>
 *
 * @copyright	Copyright (C) <%= currentYear %> <%= authorName %>. All rights reserved.
 * @license		<%= license %>
 */

defined('_JEXEC') or die;

/**
 * Class		<%= controllerClassName %>
 * @author		<%= authorName %> <<%= authorEmail %>>
 * TODO: Describe your controller here
 */
class <%= controllerClassName %> extends JController // May also extend JControllerList for back-end component
{
	/**
	* Instantiation logic for creating the new instance of <%= controllerClassName %>
	*
	* @param array $config the configuration parameters for the component
	* @author <%= authorName %> <<%= authorEmail %>>
	*/
	public function __contruct($config = array()) {

	}
	// TODO: Place any functions here: ex. protected function myFunction(){}
}
