Completed
Pull Request — master (#101)
by Дмитрий
02:36
created
src/Drivers/Pdo/ResultSet.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@
 block discarded – undo
197 197
     /**
198 198
      * Get the result object returned by PHP's MySQLi
199 199
      *
200
-     * @return \Pdostatement
200
+     * @return \mysqli_result
201 201
      *
202 202
      * @codeCoverageIgnore
203 203
      */
Please login to merge, or discard this patch.
src/Drivers/Mysqli/ResultSet.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@
 block discarded – undo
222 222
     /**
223 223
      * Get the PHP MySQLi object
224 224
      *
225
-     * @return \mysqli
225
+     * @return \Foolz\SphinxQL\Drivers\ConnectionInterface
226 226
      * @throws ConnectionException
227 227
      */
228 228
     public function getMysqliConnection()
Please login to merge, or discard this patch.
src/Drivers/Pdo/Connection.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      * @param string $query The query string
40 40
      *
41 41
      * @throws DatabaseException
42
-     * @return array|int The result array or number of rows affected
42
+     * @return ResultSet The result array or number of rows affected
43 43
      */
44 44
     public function query($query)
45 45
     {
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 
117 117
     /**
118 118
      * @param array $queue
119
-     * @return array
119
+     * @return MultiResultSet
120 120
      * @throws DatabaseException
121 121
      * @throws SphinxQLException
122 122
      */
Please login to merge, or discard this patch.