Completed
Pull Request — master (#313)
by Thomas
09:55
created
htdocs/lib2/logic/getNew.class.php 1 patch
Doc Comments   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,6 +19,9 @@  discard block
 block discarded – undo
19 19
         return $this->userCountry;
20 20
     }
21 21
 
22
+    /**
23
+     * @param string $userCountry
24
+     */
22 25
     public function set_userCountry($userCountry)
23 26
     {
24 27
         $this->userCountry = $userCountry;
@@ -98,7 +101,7 @@  discard block
 block discarded – undo
98 101
      *
99 102
      * @param array $args numeric array containing the parameter for "sql_slave"
100 103
      *
101
-     * @return object mysql result used by smarty assign_rs
104
+     * @return resource mysql result used by smarty assign_rs
102 105
      */
103 106
     private function cacheRs($args = null)
104 107
     {
@@ -150,7 +153,7 @@  discard block
 block discarded – undo
150 153
      *
151 154
      * @param array $args numeric array containing the parameter for "sql_slave"
152 155
      *
153
-     * @return object mysql result used by smarty assign_rs
156
+     * @return resource mysql result used by smarty assign_rs
154 157
      */
155 158
     private function eventRs($args = null)
156 159
     {
@@ -221,7 +224,7 @@  discard block
 block discarded – undo
221 224
      *
222 225
      * @param array $args numeric array containing the parameter for "sql_slave"
223 226
      *
224
-     * @return object mysql result used by smarty assign_rs
227
+     * @return resource mysql result used by smarty assign_rs
225 228
      */
226 229
     private function ratingRs($args = null)
227 230
     {
Please login to merge, or discard this patch.
htdocs/lib2/search/search.txt.inc.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -203,6 +203,9 @@
 block discarded – undo
203 203
     return $str;
204 204
 }
205 205
 
206
+/**
207
+ * @param string $str
208
+ */
206 209
 function lf2crlf($str)
207 210
 {
208 211
     return str_replace("\r\r\n", "\r\n", str_replace("\n", "\r\n", $str));
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
@@ -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.