<?php defined('SYSPATH') or die('No direct access allowed.');

/**
 * This class extends Minions Tasks to require the site option
 *
 * @package    OSB/Modifications
 * @category   Classes
 * @category   Helpers
 * @author     Deon George
 * @copyright  (c) 2010 Deon George
 * @license    http://dev.leenooks.net/license.html
 */
abstract class Task extends Minion_Task {
	protected $_options = array(
		'site'=>NULL,
		'id'=>NULL,
	);
}
?>