Completed
Branch master (b1da10)
by Eric
22:13
created
src/Db.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     /**
67 67
      * Sets the method of accessing the database
68 68
      * @param string $type
69
-     * @return JaegerApp\Db
69
+     * @return Db
70 70
      */
71 71
     public function setAccessType($type)
72 72
     {
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
      * Escapes a string for db use
318 318
      * 
319 319
      * @param string $string            
320
-     * @return Ambigous <\voku\db\array, \voku\db\bool, \voku\db\float, \voku\db\int, \voku\db\string>
320
+     * @return string <\voku\db\array, \voku\db\bool, \voku\db\float, \voku\db\int, \voku\db\string>
321 321
      */
322 322
     public function escape($string)
323 323
     {
@@ -341,7 +341,6 @@  discard block
 block discarded – undo
341 341
      * Clears any records in memory associated with a result set.
342 342
      * It allows calling with no select query having occurred.
343 343
      *
344
-     * @param resource $result
345 344
      * @access public
346 345
      */
347 346
     public function clear()
Please login to merge, or discard this patch.
src/Db/Pdo.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@
 block discarded – undo
259 259
     /**
260 260
      * 
261 261
      * @param array $credentials
262
-     * @return \JaegerApp\Db\Mysqli
262
+     * @return Pdo
263 263
      */
264 264
     public function setCredentials(array $credentials)
265 265
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@
 block discarded – undo
10 10
  
11 11
 namespace JaegerApp\Db;
12 12
 
13
-use Aura\Sql\ExtendedPdo; 
14 13
 use Aura\SqlQuery\QueryFactory;
14
+use Aura\Sql\ExtendedPdo;
15 15
 
16 16
 /**
17 17
  * Jaeger - PDO Database Object
Please login to merge, or discard this patch.