@@ -1,9 +1,9 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * By implementing this interface a /dev/cron will be able to start in on the |
|
| 4 | - * expression that you return frmo getSchedule(); |
|
| 5 | - * |
|
| 6 | - */ |
|
| 3 | + * By implementing this interface a /dev/cron will be able to start in on the |
|
| 4 | + * expression that you return frmo getSchedule(); |
|
| 5 | + * |
|
| 6 | + */ |
|
| 7 | 7 | interface CronTask |
| 8 | 8 | { |
| 9 | 9 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if(!defined('CRONTASK_MODULE_PATH')) { |
| 4 | - define('CRONTASK_MODULE_PATH', dirname(__DIR__)); |
|
| 4 | + define('CRONTASK_MODULE_PATH', dirname(__DIR__)); |
|
| 5 | 5 | } |
@@ -1,10 +1,10 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * This is the controller that finds, checks and process all crontasks |
|
| 4 | - * |
|
| 5 | - * The default route to this controller is 'dev/cron' |
|
| 6 | - * |
|
| 7 | - */ |
|
| 3 | + * This is the controller that finds, checks and process all crontasks |
|
| 4 | + * |
|
| 5 | + * The default route to this controller is 'dev/cron' |
|
| 6 | + * |
|
| 7 | + */ |
|
| 8 | 8 | class CronTaskController extends Controller |
| 9 | 9 | { |
| 10 | 10 | |