Completed
Branch master (7d3f82)
by Thomas
09:15
created
htdocs/okapi/views/update.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -150,6 +150,8 @@
 block discarded – undo
150 150
      * Return the list of email addresses of developers who used any of the given
151 151
      * method names at least once. If $days is not null, then only consumers which
152 152
      * used the method in last X $days will be returned.
153
+     * @param string[] $service_names
154
+     * @param integer $days
153 155
      */
154 156
     public static function get_consumers_of($service_names, $days = null)
155 157
     {
Please login to merge, or discard this patch.
htdocs/restorecaches.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -675,7 +675,7 @@
 block discarded – undo
675 675
  * @param $admins
676 676
  * @param $wp_oc
677 677
  * @param $r
678
- * @param $field
678
+ * @param string $field
679 679
  * @param $oldvalue
680 680
  * @param $newvalue
681 681
  */
Please login to merge, or discard this patch.
htdocs/search.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -1461,6 +1461,10 @@
 block discarded – undo
1461 1461
         }
1462 1462
 
1463 1463
         // helper function for output modules
1464
+
1465
+        /**
1466
+         * @param string $str
1467
+         */
1464 1468
         function append_output($str)
1465 1469
         {
1466 1470
             global $db, $content, $bUseZip;
Please login to merge, or discard this patch.
htdocs/src/Oc/Libse/ChildWp/ControllerChildWp.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -28,6 +28,9 @@  discard block
 block discarded – undo
28 28
         $this->translator = $this->initTranslator($translator);
29 29
     }
30 30
 
31
+    /**
32
+     * @param boolean $request
33
+     */
31 34
     private function initRequest($request)
32 35
     {
33 36
         if ($request) {
@@ -37,6 +40,9 @@  discard block
 block discarded – undo
37 40
         return new RequestHttp();
38 41
     }
39 42
 
43
+    /**
44
+     * @param boolean $translator
45
+     */
40 46
     private function initTranslator($translator)
41 47
     {
42 48
         if ($translator) {
Please login to merge, or discard this patch.
htdocs/src/Oc/Libse/ChildWp/PresenterChildWp.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -54,6 +54,9 @@  discard block
 block discarded – undo
54 54
         $this->onDoSubmit($this->coordinate->getCoordinate(), $this->getDesc());
55 55
     }
56 56
 
57
+    /**
58
+     * @param \Oc\Libse\Coordinate\CoordinateCoordinate $coordinate
59
+     */
57 60
     abstract protected function onDoSubmit($coordinate, $description);
58 61
 
59 62
     protected function getType()
@@ -74,6 +77,9 @@  discard block
 block discarded – undo
74 77
         $this->typeImages = $childWpHandler->getChildNamesAndImages();
75 78
     }
76 79
 
80
+    /**
81
+     * @param \Oc\Libse\Coordinate\CoordinateCoordinate $coords
82
+     */
77 83
     public function initCoordinate($coords)
78 84
     {
79 85
         $this->coordinate->init($coords->latitude(), $coords->longitude());
Please login to merge, or discard this patch.
htdocs/src/Oc/Libse/Coordinate/PresenterCoordinate.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@  discard block
 block discarded – undo
35 35
         $this->init(0, 0);
36 36
     }
37 37
 
38
+    /**
39
+     * @param boolean $request
40
+     */
38 41
     private function initRequest($request)
39 42
     {
40 43
         if ($request) {
@@ -44,6 +47,9 @@  discard block
 block discarded – undo
44 47
         return new RequestHttp();
45 48
     }
46 49
 
50
+    /**
51
+     * @param boolean $translator
52
+     */
47 53
     private function initTranslator($translator)
48 54
     {
49 55
         if ($translator) {
Please login to merge, or discard this patch.
htdocs/src/Oc/SmartyPlugins/prefilter.t.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -84,6 +84,11 @@  discard block
 block discarded – undo
84 84
 /* $block ... {t[ a=$a|nbsp b="a" ...]}
85 85
  *
86 86
  */
87
+/**
88
+ * @param string $block
89
+ * @param string $message
90
+ * @param integer $line
91
+ */
87 92
 function smarty_prefilter_t_process_block($block, $message, &$smarty, $line)
88 93
 {
89 94
     if ($message != '') {
@@ -252,6 +257,9 @@  discard block
 block discarded – undo
252 257
     return $attrs;
253 258
 }
254 259
 
260
+/**
261
+ * @param string[] $needles
262
+ */
255 263
 function smarty_prefilter_t_strpos_multi($haystack, $needles)
256 264
 {
257 265
     $arg = func_get_args();
Please login to merge, or discard this patch.
htdocs/translate.php 1 patch
Doc Comments   +16 added lines patch added patch discarded remove patch
@@ -245,6 +245,9 @@  discard block
 block discarded – undo
245 245
 /* $truncatLastInsert = true   for downloaded file
246 246
  * $truncatLastInsert = false  to sign self generated file (in function export)
247 247
  */
248
+/**
249
+ * @param boolean $truncateLastInsert
250
+ */
248 251
 function calcDataSqlChecksum($truncateLastInsert)
249 252
 {
250 253
     global $opt;
@@ -390,6 +393,10 @@  discard block
 block discarded – undo
390 393
     $tpl->redirect('translate.php?translang=' . $translang);
391 394
 }
392 395
 
396
+/**
397
+ * @param string $relbasedir
398
+ * @param string $ext
399
+ */
393 400
 function unlinkFiles($relbasedir, $ext)
394 401
 {
395 402
     global $opt;
@@ -481,6 +488,9 @@  discard block
 block discarded – undo
481 488
     $tpl->redirect('translate.php?translang=' . $translang);
482 489
 }
483 490
 
491
+/**
492
+ * @param integer $freeId
493
+ */
484 494
 function useId($freeId)
485 495
 {
486 496
     $lastId = sql_value("SELECT MAX(`id`) FROM `sys_trans`", 0);
@@ -490,6 +500,9 @@  discard block
 block discarded – undo
490 500
     setId($lastId, $freeId);
491 501
 }
492 502
 
503
+/**
504
+ * @param integer $oldId
505
+ */
493 506
 function setId($oldId, $newId)
494 507
 {
495 508
     global $transIdCols;
@@ -568,6 +581,9 @@  discard block
 block discarded – undo
568 581
     $tpl->redirect('translate.php?translang=' . $translang);
569 582
 }
570 583
 
584
+/**
585
+ * @param string $dir
586
+ */
571 587
 function enumSqlFiles($dir)
572 588
 {
573 589
     $retval = [];
Please login to merge, or discard this patch.
htdocs/util/notification/run_notify.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -197,6 +197,9 @@
 block discarded – undo
197 197
     return 0;
198 198
 }
199 199
 
200
+/**
201
+ * @param string $domain
202
+ */
200 203
 function is_existent_maildomain($domain)
201 204
 {
202 205
     $smtp_serverlist = [];
Please login to merge, or discard this patch.