Completed
Push — master ( 3f7f8c...3d5226 )
by Eser
02:13
created
src/Helpers/Date.php 2 patches
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.
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Scabbia2 Helpers Component
4
- * https://github.com/eserozvataf/scabbia2
5
- *
6
- * For the full copyright and license information, please view the LICENSE
7
- * file that was distributed with this source code.
8
- *
9
- * @link        https://github.com/eserozvataf/scabbia2-helpers for the canonical source repository
10
- * @copyright   2010-2016 Eser Ozvataf. (http://eser.ozvataf.com/)
11
- * @license     http://www.apache.org/licenses/LICENSE-2.0 - Apache License, Version 2.0
12
- */
3
+     * Scabbia2 Helpers Component
4
+     * https://github.com/eserozvataf/scabbia2
5
+     *
6
+     * For the full copyright and license information, please view the LICENSE
7
+     * file that was distributed with this source code.
8
+     *
9
+     * @link        https://github.com/eserozvataf/scabbia2-helpers for the canonical source repository
10
+     * @copyright   2010-2016 Eser Ozvataf. (http://eser.ozvataf.com/)
11
+     * @license     http://www.apache.org/licenses/LICENSE-2.0 - Apache License, Version 2.0
12
+     */
13 13
 
14 14
 namespace Scabbia\Helpers;
15 15
 
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 2 patches
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.
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Scabbia2 Helpers Component
4
- * https://github.com/eserozvataf/scabbia2
5
- *
6
- * For the full copyright and license information, please view the LICENSE
7
- * file that was distributed with this source code.
8
- *
9
- * @link        https://github.com/eserozvataf/scabbia2-helpers for the canonical source repository
10
- * @copyright   2010-2016 Eser Ozvataf. (http://eser.ozvataf.com/)
11
- * @license     http://www.apache.org/licenses/LICENSE-2.0 - Apache License, Version 2.0
12
- */
3
+     * Scabbia2 Helpers Component
4
+     * https://github.com/eserozvataf/scabbia2
5
+     *
6
+     * For the full copyright and license information, please view the LICENSE
7
+     * file that was distributed with this source code.
8
+     *
9
+     * @link        https://github.com/eserozvataf/scabbia2-helpers for the canonical source repository
10
+     * @copyright   2010-2016 Eser Ozvataf. (http://eser.ozvataf.com/)
11
+     * @license     http://www.apache.org/licenses/LICENSE-2.0 - Apache License, Version 2.0
12
+     */
13 13
 
14 14
 namespace Scabbia\Helpers;
15 15
 
Please login to merge, or discard this patch.
src/Helpers/String.php 2 patches
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.
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Scabbia2 Helpers Component
4
- * https://github.com/eserozvataf/scabbia2
5
- *
6
- * For the full copyright and license information, please view the LICENSE
7
- * file that was distributed with this source code.
8
- *
9
- * @link        https://github.com/eserozvataf/scabbia2-helpers for the canonical source repository
10
- * @copyright   2010-2016 Eser Ozvataf. (http://eser.ozvataf.com/)
11
- * @license     http://www.apache.org/licenses/LICENSE-2.0 - Apache License, Version 2.0
12
- */
3
+     * Scabbia2 Helpers Component
4
+     * https://github.com/eserozvataf/scabbia2
5
+     *
6
+     * For the full copyright and license information, please view the LICENSE
7
+     * file that was distributed with this source code.
8
+     *
9
+     * @link        https://github.com/eserozvataf/scabbia2-helpers for the canonical source repository
10
+     * @copyright   2010-2016 Eser Ozvataf. (http://eser.ozvataf.com/)
11
+     * @license     http://www.apache.org/licenses/LICENSE-2.0 - Apache License, Version 2.0
12
+     */
13 13
 
14 14
 namespace Scabbia\Helpers;
15 15
 
Please login to merge, or discard this patch.
src/Helpers/Arrays.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Scabbia2 Helpers Component
4
- * https://github.com/eserozvataf/scabbia2
5
- *
6
- * For the full copyright and license information, please view the LICENSE
7
- * file that was distributed with this source code.
8
- *
9
- * @link        https://github.com/eserozvataf/scabbia2-helpers for the canonical source repository
10
- * @copyright   2010-2016 Eser Ozvataf. (http://eser.ozvataf.com/)
11
- * @license     http://www.apache.org/licenses/LICENSE-2.0 - Apache License, Version 2.0
12
- */
3
+     * Scabbia2 Helpers Component
4
+     * https://github.com/eserozvataf/scabbia2
5
+     *
6
+     * For the full copyright and license information, please view the LICENSE
7
+     * file that was distributed with this source code.
8
+     *
9
+     * @link        https://github.com/eserozvataf/scabbia2-helpers for the canonical source repository
10
+     * @copyright   2010-2016 Eser Ozvataf. (http://eser.ozvataf.com/)
11
+     * @license     http://www.apache.org/licenses/LICENSE-2.0 - Apache License, Version 2.0
12
+     */
13 13
 
14 14
 namespace Scabbia\Helpers;
15 15
 
Please login to merge, or discard this patch.
src/Helpers/Runtime.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Scabbia2 Helpers Component
4
- * https://github.com/eserozvataf/scabbia2
5
- *
6
- * For the full copyright and license information, please view the LICENSE
7
- * file that was distributed with this source code.
8
- *
9
- * @link        https://github.com/eserozvataf/scabbia2-helpers for the canonical source repository
10
- * @copyright   2010-2016 Eser Ozvataf. (http://eser.ozvataf.com/)
11
- * @license     http://www.apache.org/licenses/LICENSE-2.0 - Apache License, Version 2.0
12
- */
3
+     * Scabbia2 Helpers Component
4
+     * https://github.com/eserozvataf/scabbia2
5
+     *
6
+     * For the full copyright and license information, please view the LICENSE
7
+     * file that was distributed with this source code.
8
+     *
9
+     * @link        https://github.com/eserozvataf/scabbia2-helpers for the canonical source repository
10
+     * @copyright   2010-2016 Eser Ozvataf. (http://eser.ozvataf.com/)
11
+     * @license     http://www.apache.org/licenses/LICENSE-2.0 - Apache License, Version 2.0
12
+     */
13 13
 
14 14
 namespace Scabbia\Helpers;
15 15
 
Please login to merge, or discard this patch.