Completed
Push — master ( 8cb26c...25c495 )
by Terry
02:11
created
src/FluentPdoModel.php 2 patches
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.
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1224,7 +1224,7 @@  discard block
 block discarded – undo
1224 1224
     }
1225 1225
 
1226 1226
     /**
1227
-     * @param int|null $id
1227
+     * @param integer $id
1228 1228
      * @param int $cacheTtl
1229 1229
      * @return stdClass|null
1230 1230
      */
@@ -1242,7 +1242,7 @@  discard block
 block discarded – undo
1242 1242
     }
1243 1243
 
1244 1244
     /**
1245
-     * @param int|null $id
1245
+     * @param integer $id
1246 1246
      * @param int $cacheTtl
1247 1247
      * @return boolean
1248 1248
      */
@@ -1828,7 +1828,7 @@  discard block
 block discarded – undo
1828 1828
      * LIMIT $limit
1829 1829
      *
1830 1830
      * @param  int      $limit
1831
-     * @param  int|null $offset
1831
+     * @param  integer $offset
1832 1832
      * @return FluentPdoModel|$this
1833 1833
      */
1834 1834
     public function limit(int $limit, int $offset=0) : FluentPdoModel
@@ -3065,7 +3065,7 @@  discard block
 block discarded – undo
3065 3065
 
3066 3066
     /**
3067 3067
      * @param $value
3068
-     * @return mixed|string
3068
+     * @return string
3069 3069
      */
3070 3070
     public function gzDecodeData(string $value) : string
3071 3071
     {
@@ -4580,7 +4580,7 @@  discard block
 block discarded – undo
4580 4580
      * @param string $start
4581 4581
      * @param string $end
4582 4582
      * @param string $hayStack
4583
-     * @return mixed
4583
+     * @return string
4584 4584
      */
4585 4585
     public static function between(string $start, string $end, string $hayStack) : string
4586 4586
     {
@@ -4591,7 +4591,7 @@  discard block
 block discarded – undo
4591 4591
      * @param string     $needle
4592 4592
      * @param string     $hayStack
4593 4593
      * @param bool $returnOrigIfNeedleNotExists
4594
-     * @return mixed
4594
+     * @return string
4595 4595
      */
4596 4596
     public static function before(string $needle, string $hayStack, bool $returnOrigIfNeedleNotExists=false) : string
4597 4597
     {
Please login to merge, or discard this patch.
src/Drivers/OciStubPdo.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.