Completed
Push — master ( e780a4...01431d )
by Terry
06:28
created
src/Drivers/OciPdo.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -325,7 +325,7 @@
 block discarded – undo
325 325
     /**
326 326
      * @param string $query
327 327
      * @param integer $limit
328
-     * @param null|integer $offset
328
+     * @param integer $offset
329 329
      * @return string
330 330
      */
331 331
     public function setLimit(string $query, int $limit=0, int $offset=0) : string
Please login to merge, or discard this patch.
src/FluentPdoModel.php 2 patches
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1027,7 +1027,7 @@  discard block
 block discarded – undo
1027 1027
 
1028 1028
     /**
1029 1029
      * @param null|string $field
1030
-     * @param null|int $itemId
1030
+     * @param integer $itemId
1031 1031
      * @param int $cacheTtl
1032 1032
      * @return mixed|null
1033 1033
      */
@@ -1109,7 +1109,7 @@  discard block
 block discarded – undo
1109 1109
     }
1110 1110
 
1111 1111
     /**
1112
-     * @param int|null $id
1112
+     * @param integer $id
1113 1113
      * @param int $cacheTtl
1114 1114
      * @return stdClass|bool
1115 1115
      */
@@ -1126,7 +1126,7 @@  discard block
 block discarded – undo
1126 1126
     }
1127 1127
 
1128 1128
     /**
1129
-     * @param int|null $id
1129
+     * @param integer $id
1130 1130
      * @param int $cacheTtl
1131 1131
      * @return boolean
1132 1132
      */
@@ -1658,7 +1658,7 @@  discard block
 block discarded – undo
1658 1658
      * LIMIT $limit
1659 1659
      *
1660 1660
      * @param  int      $limit
1661
-     * @param  int|null $offset
1661
+     * @param  integer $offset
1662 1662
      * @return FluentPdoModel
1663 1663
      */
1664 1664
     public function limit(int $limit, int $offset=0) : FluentPdoModel
@@ -2793,7 +2793,7 @@  discard block
 block discarded – undo
2793 2793
 
2794 2794
     /**
2795 2795
      * @param $value
2796
-     * @return mixed|string
2796
+     * @return string
2797 2797
      */
2798 2798
     public function gzDecodeData(string $value) : string
2799 2799
     {
@@ -4045,7 +4045,7 @@  discard block
 block discarded – undo
4045 4045
      * @param string $start
4046 4046
      * @param string $end
4047 4047
      * @param string $hayStack
4048
-     * @return mixed
4048
+     * @return string
4049 4049
      */
4050 4050
     public static function between(string $start, string $end, string $hayStack) : string
4051 4051
     {
@@ -4056,7 +4056,7 @@  discard block
 block discarded – undo
4056 4056
      * @param string     $needle
4057 4057
      * @param string     $hayStack
4058 4058
      * @param bool $returnOrigIfNeedleNotExists
4059
-     * @return mixed
4059
+     * @return string
4060 4060
      */
4061 4061
     public static function before(string $needle, string $hayStack, bool $returnOrigIfNeedleNotExists=false) : string
4062 4062
     {
Please login to merge, or discard this patch.
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,15 +14,15 @@
 block discarded – undo
14 14
 namespace Terah\FluentPdoModel;
15 15
 
16 16
 use Closure;
17
-use PDOException;
17
+use DateTime;
18 18
 use Exception;
19 19
 use PDO;
20
+use PDOException;
20 21
 use PDOStatement;
21
-use stdClass;
22
-use DateTime;
23
-use Terah\FluentPdoModel\Drivers\AbstractPdo;
24 22
 use Psr\Log\LoggerInterface;
23
+use Terah\FluentPdoModel\Drivers\AbstractPdo;
25 24
 use Terah\RedisCache\CacheInterface;
25
+use stdClass;
26 26
 use function Terah\Assert\Assert;
27 27
 use function Terah\Assert\Validate;
28 28
 /**
Please login to merge, or discard this patch.