Completed
Push — master ( aab764...2fe0dc )
by Terry
05:07
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\AbstractLogger;
25 23
 use Stash\Interfaces\PoolInterface;
24
+use Terah\FluentPdoModel\Drivers\AbstractPdo;
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   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -981,7 +981,7 @@
 block discarded – undo
981 981
     /**
982 982
      * @param int|null $id
983 983
      * @param int $cacheTtl
984
-     * @return \stdClass|bool
984
+     * @return boolean
985 985
      */
986 986
     public function fetchExists($id=null, $cacheTtl=self::CACHE_NO)
987 987
     {
Please login to merge, or discard this patch.
src/ConnectionPool.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     }
107 107
 
108 108
     /**
109
-     * @param $name
109
+     * @param string $name
110 110
      * @return AbstractPdo
111 111
      */
112 112
     public function getConnection($name)
Please login to merge, or discard this patch.