Completed
Push — master ( e1208c...9b683f )
by Fwolf
03:26
created
src/Fwlib/Db/SqlGenerator.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -64,6 +64,7 @@
 block discarded – undo
64 64
      * Constructor
65 65
      *
66 66
      * @param   Adodb  &$db    Db object
67
+     * @param Adodb $db
67 68
      */
68 69
     public function __construct(&$db)
69 70
     {
Please login to merge, or discard this patch.
src/Fwlib/Db/SyncDbData.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
     /**
327 327
      * Set source and dest db connection
328 328
      *
329
-     * @param   array|Adodb    $source
329
+     * @param   Adodb    $source
330 330
      * @param   array|Adodb    $dest
331 331
      */
332 332
     public function setDb($source, $dest)
@@ -350,9 +350,9 @@  discard block
 block discarded – undo
350 350
     /**
351 351
      * Record last timestamp in dest db, for next round
352 352
      *
353
-     * @param   $dbDest
354
-     * @param   $table      Table name in source db
355
-     * @param   $timestamp
353
+     * @param   Adodb $dbDest
354
+     * @param   string $table      Table name in source db
355
+     * @param   string $timestamp
356 356
      */
357 357
     protected function setLastTimestamp($dbDest, $table, $timestamp)
358 358
     {
Please login to merge, or discard this patch.
src/Fwlib/Html/FormValidator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      *
173 173
      * @param   string|array    $name   String or array of it, empty means all
174 174
      * @param   string|array    $part   Empty means all part
175
-     * @return  this
175
+     * @return  FormValidator
176 176
      */
177 177
     public function clearRules($name = '*', $part = '')
178 178
     {
@@ -385,7 +385,7 @@  discard block
 block discarded – undo
385 385
      * @param   string|array    $name   String or array of it
386 386
      * @param   string|array    $check  String or array of it
387 387
      * @param   string          $tip
388
-     * @return  this
388
+     * @return  FormValidator
389 389
      */
390 390
     public function setRuleSimple($name, $check, $tip = '')
391 391
     {
Please login to merge, or discard this patch.
src/Fwlib/Html/Generator/Element/AbstractWDatePicker.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
 
121 121
 
122 122
     /**
123
-     * @return  array
123
+     * @return  string
124 124
      */
125 125
     protected function getOtherPickerOptions()
126 126
     {
Please login to merge, or discard this patch.
src/Fwlib/Html/Generator/ElementCollection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@
 block discarded – undo
243 243
      * @param mixed $offset <p>
244 244
      *                      The offset to retrieve.
245 245
      *                      </p>
246
-     * @return mixed Can return all value types.
246
+     * @return ElementInterface Can return all value types.
247 247
      */
248 248
     public function offsetGet($offset)
249 249
     {
Please login to merge, or discard this patch.
src/Fwlib/Html/ListView/Renderer.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 use Fwlib\Html\Helper\IndentAwareTrait;
5 5
 use Fwlib\Html\ListView\Helper\ClassAndIdConfigTrait;
6
-use Fwlib\Util\UtilContainer;
7 6
 use Fwlib\Web\UrlGenerator;
8 7
 
9 8
 /**
Please login to merge, or discard this patch.
src/Fwlib/Net/Sms/SmsSender.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
     /**
169 169
      * Send SMS
170 170
      *
171
-     * @param   mixed   $destNumber
171
+     * @param   string   $destNumber
172 172
      * @param   string  $sms
173 173
      * @param   integer $cat
174 174
      * @return  integer             Actual valid phone number sent.
Please login to merge, or discard this patch.
src/Fwlib/Util/Algorithm/Iso7064.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@
 block discarded – undo
228 228
      *
229 229
      * @param   string  $source
230 230
      * @param   string  $algorithm
231
-     * @return  string
231
+     * @return  boolean
232 232
      */
233 233
     public function verify($source, $algorithm = '')
234 234
     {
Please login to merge, or discard this patch.
src/Fwlib/Util/Common/HttpUtil.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -514,7 +514,7 @@
 block discarded – undo
514 514
      * page that the cookie should be visible for.
515 515
      *
516 516
      * @param   string  $name
517
-     * @param   mixed   $value
517
+     * @param   null|string   $value
518 518
      * @param   integer $expire
519 519
      * @param   string  $path
520 520
      * @param   string  $domain
Please login to merge, or discard this patch.