This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/application/classes/Task.php

20 lines
442 B
PHP
Raw Normal View History

2011-05-14 07:35:33 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
2012-11-09 23:13:57 +00:00
* This class extends Minions Tasks to require the site option
2011-05-14 07:35:33 +00:00
*
2012-11-09 23:13:57 +00:00
* @package OSB/Modifications
2011-05-14 07:35:33 +00:00
* @category Classes
* @category Helpers
* @author Deon George
* @copyright (c) 2010 Deon George
* @license http://dev.leenooks.net/license.html
*/
2012-11-09 23:13:57 +00:00
abstract class Task extends Minion_Task {
protected $_options = array(
'site'=>NULL,
'id'=>NULL,
);
2011-05-14 07:35:33 +00:00
}
?>