| Current Path : /var/www/iplanru/data/www/www.i-plan.ru/components/com_poll/models/ | 
| Current File : /var/www/iplanru/data/www/www.i-plan.ru/components/com_poll/models/questions.php | 
<?php
// No direct access
defined( '_JEXEC' ) or die;
/**
 *@author kirdinyuri
 */
class PollModelQuestions extends JModelLegacy
{
	/**
	 * @var JInput|null
	 */
	private $input;
	/**
	 * Class constructor
	 * @param array $config
	 */
	public function __construct( $config = array() )
	{
		parent::__construct( $config );
		$this->input = JFactory::getApplication()->input;
	}
}