Completed
Push — delete_old_notif_mob ( 909209...8d16e9 )
by
unknown
08:56
created
mod/missions/api/v0/export.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -182,6 +182,9 @@
 block discarded – undo
182 182
       return str_replace('::version::', self::$version, self::$help);
183 183
     }
184 184
 
185
+    /**
186
+     * @param string $object_type
187
+     */
185 188
     function __construct($object_type, $subtype = false, $guid = null,
186 189
       $since = null, $before = null, $limit = null, $resume = null,
187 190
       $sort = false, $omit = null, $count = false) {
Please login to merge, or discard this patch.
mod/delete_old_notif/lib/functions.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -1,6 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 // Base on cp_notification
4
+/**
5
+ * @param string $frequency
6
+ */
4 7
 function initialize_queue( $frequency ){
5 8
 	$dbprefix = elgg_get_config('dbprefix');
6 9
 
Please login to merge, or discard this patch.
mod/delete_old_notif/start.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -21,6 +21,9 @@
 block discarded – undo
21 21
 	delete_old_notif_handler($hook, $entity_type, $return_value, $params, 'weekly');
22 22
 }
23 23
 
24
+/**
25
+ * @param string $cron_freq
26
+ */
24 27
 function delete_old_notif_handler($hook, $entity_type, $return_value, $params, $cron_freq) {
25 28
 	$dbprefix = elgg_get_config('dbprefix');
26 29
 
Please login to merge, or discard this patch.