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 1 patch
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.
src/Model/Adapter/PDO/PDOAdapter.php 1 patch
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.
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 1 patch
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.