Completed
Push — master ( 75a4bf...99f4b4 )
by BENOIT
03:23
created
src/Model/Adapter/Mysqli/EmulatedStatement.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -8,6 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     /**
10 10
      * @inheritDoc
11
+     * @param string $queryString
11 12
      */
12 13
     public function __construct(MysqliAdapter $connection, array $values = null, $queryString)
13 14
     {
Please login to merge, or discard this patch.
src/Model/Adapter/Mysqli/MysqliAdapter.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -321,7 +321,6 @@
 block discarded – undo
321 321
 
322 322
     /**
323 323
      * @param CredentialsInterface $credentials
324
-     * @param bool $resolveNamedParameters
325 324
      * @return MysqliAdapter
326 325
      */
327 326
     public static function factory(CredentialsInterface $credentials, array $options = null): self
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,10 +15,10 @@
 block discarded – undo
15 15
 use BenTools\SimpleDBAL\Model\Exception\ParamBindingException;
16 16
 use GuzzleHttp\Promise\Promise;
17 17
 use GuzzleHttp\Promise\PromiseInterface;
18
+use Throwable;
18 19
 use mysqli;
19 20
 use mysqli_result;
20 21
 use mysqli_sql_exception;
21
-use Throwable;
22 22
 
23 23
 class MysqliAdapter implements AdapterInterface, TransactionAdapterInterface, ReconnectableAdapterInterface
24 24
 {
Please login to merge, or discard this patch.
src/Model/Adapter/PDO/PDOAdapter.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -180,7 +180,6 @@
 block discarded – undo
180 180
     }
181 181
 
182 182
     /**
183
-     * @param \PDOStatement $wrappedStmt
184 183
      */
185 184
     private function runStmt(Statement $stmt)
186 185
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 use BenTools\SimpleDBAL\Contract\AdapterInterface;
6 6
 use BenTools\SimpleDBAL\Contract\CredentialsInterface;
7 7
 use BenTools\SimpleDBAL\Contract\ReconnectableAdapterInterface;
8
-use BenTools\SimpleDBAL\Contract\StatementInterface;
9 8
 use BenTools\SimpleDBAL\Contract\ResultInterface;
9
+use BenTools\SimpleDBAL\Contract\StatementInterface;
10 10
 use BenTools\SimpleDBAL\Contract\TransactionAdapterInterface;
11 11
 use BenTools\SimpleDBAL\Model\ConfigurableTrait;
12 12
 use BenTools\SimpleDBAL\Model\Exception\AccessDeniedException;
Please login to merge, or discard this patch.
src/Model/Adapter/PDO/Result.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     /**
29 29
      * Result constructor.
30 30
      * @param PDO $pdo
31
-     * @param Statement $stmt
31
+     * @param PDOStatement $stmt
32 32
      */
33 33
     public function __construct(PDO $pdo, PDOStatement $stmt = null)
34 34
     {
Please login to merge, or discard this patch.
src/Model/Adapter/PDO/Statement.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -126,6 +126,7 @@
 block discarded – undo
126 126
 
127 127
     /**
128 128
      * @param $var
129
+     * @param string $value
129 130
      * @return int
130 131
      */
131 132
     protected function getPdoType($value)
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace BenTools\SimpleDBAL\Model\Adapter\PDO;
4 4
 
5 5
 use BenTools\SimpleDBAL\Contract\AdapterInterface;
6
-use BenTools\SimpleDBAL\Contract\StatementInterface;
7 6
 use BenTools\SimpleDBAL\Contract\ResultInterface;
7
+use BenTools\SimpleDBAL\Contract\StatementInterface;
8 8
 use BenTools\SimpleDBAL\Model\StatementTrait;
9 9
 use PDO;
10 10
 use PDOStatement;
Please login to merge, or discard this patch.