Completed
Push — module-standard ( 3eb8c6...64c3d9 )
by Stig
06:26
created
code/interfaces/CronTask.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
_config.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
code/controllers/CronTaskController.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.