Completed
Push — master ( 5df547...fabe6a )
by Nicolaas
02:13
created
code/model/MetaTagCMSControlFileUse.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -192,6 +192,9 @@  discard block
 block discarded – undo
192 192
         }
193 193
     }
194 194
 
195
+    /**
196
+     * @param string $connectionType
197
+     */
195 198
     private function createNewRecord($dataObjectClassName, $dataObjectFieldName, $fileClassName, $connectionType)
196 199
     {
197 200
         //exceptions....
@@ -408,7 +411,7 @@  discard block
 block discarded – undo
408 411
 
409 412
     /**
410 413
      * @param Int $fileID
411
-     * @return DataObjectSet
414
+     * @return ArrayList|null
412 415
      */
413 416
     public static function retrieve_list_of_places($fileID)
414 417
     {
@@ -526,6 +529,9 @@  discard block
 block discarded – undo
526 529
     }
527 530
 
528 531
 
532
+    /**
533
+     * @param integer $folderID
534
+     */
529 535
     public static function upgrade_file_names($folderID, $verbose = true)
530 536
     {
531 537
         set_time_limit(60*10); // 10 minutes
Please login to merge, or discard this patch.
code/model/MetaTagsLinks.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -53,6 +53,9 @@  discard block
 block discarded – undo
53 53
         return '8' . $this->hexencode($c);
54 54
     }
55 55
 
56
+    /**
57
+     * @param integer $b
58
+     */
56 59
     private function zerofill($a, $b)
57 60
     {
58 61
         $z = hexdec(80000000);
@@ -67,6 +70,9 @@  discard block
 block discarded – undo
67 70
         return $a;
68 71
     }
69 72
 
73
+    /**
74
+     * @param integer $str
75
+     */
70 76
     private function hexencode($str)
71 77
     {
72 78
         $out  = $this->hex8($this->zerofill($str, 24));
Please login to merge, or discard this patch.
code/tasks/MetaTagCMSFixFileLocations.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -220,6 +220,9 @@
 block discarded – undo
220 220
         }
221 221
     }
222 222
 
223
+    /**
224
+     * @param string $var
225
+     */
223 226
     private function linkWithGetParameter($var, $value)
224 227
     {
225 228
         return "/dev/tasks/MetaTagCMSFixImageLocations?$var=".urlencode($value);
Please login to merge, or discard this patch.