Completed
Branch master (a6574e)
by Eser
05:40
created
src/Helpers/Date.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
      *
223 223
      * @param int  $uTimestamp timestamp
224 224
      *
225
-     * @return string output
225
+     * @return integer output
226 226
      */
227 227
     public static function toDos($uTimestamp)
228 228
     {
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
      *
252 252
      * @param int  $uTimestamp timestamp
253 253
      *
254
-     * @return string output
254
+     * @return integer output
255 255
      */
256 256
     public static function fromDos($uTimestamp)
257 257
     {
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
      * @param int    $uTimestamp timestamp
297 297
      * @param string $uFormat    source format
298 298
      *
299
-     * @return string output
299
+     * @return integer output
300 300
      */
301 301
     public static function fromDb($uTimestamp, $uFormat = "d-m-Y H:i:s")
302 302
     {
Please login to merge, or discard this patch.
src/Helpers/FileSystem.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
      * @param string    $uPath      the file path
143 143
      * @param int       $uFlags     flags
144 144
      *
145
-     * @return bool|string the file content
145
+     * @return false|string the file content
146 146
      */
147 147
     public static function read($uPath, $uFlags = self::LOCK_SHARE)
148 148
     {
Please login to merge, or discard this patch.
src/Helpers/Html.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -352,7 +352,7 @@
 block discarded – undo
352 352
      *
353 353
      * @param string $uType the type of the document
354 354
      *
355
-     * @return bool|string html output
355
+     * @return string|false html output
356 356
      */
357 357
     public static function doctype($uType = "html5")
358 358
     {
Please login to merge, or discard this patch.
src/Helpers/String.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1544,7 +1544,7 @@  discard block
 block discarded – undo
1544 1544
      * @param int    $uNumber    the input number
1545 1545
      * @param string $uBaseChars charset available for source base
1546 1546
      *
1547
-     * @return string converted base
1547
+     * @return integer converted base
1548 1548
      */
1549 1549
     public static function fromBase($uNumber, $uBaseChars)
1550 1550
     {
@@ -1575,7 +1575,7 @@  discard block
 block discarded – undo
1575 1575
      *
1576 1576
      * @param int $uNumber the input number
1577 1577
      *
1578
-     * @return string converted base
1578
+     * @return integer converted base
1579 1579
      */
1580 1580
     public static function fromBase62($uNumber)
1581 1581
     {
@@ -1599,7 +1599,7 @@  discard block
 block discarded – undo
1599 1599
      *
1600 1600
      * @param int $uNumber the input number
1601 1601
      *
1602
-     * @return string converted base
1602
+     * @return integer converted base
1603 1603
      */
1604 1604
     public static function fromBaseUrl($uNumber)
1605 1605
     {
Please login to merge, or discard this patch.