Completed
Push — master ( 3bfc04...753f5d )
by Eric
02:06
created
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.
src/Db.php 1 patch
Doc Comments   +2 added lines, -2 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
     {
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
      * Escapes a string for db use
316 316
      * 
317 317
      * @param string $string            
318
-     * @return Ambigous <\voku\db\array, \voku\db\bool, \voku\db\float, \voku\db\int, \voku\db\string>
318
+     * @return string <\voku\db\array, \voku\db\bool, \voku\db\float, \voku\db\int, \voku\db\string>
319 319
      */
320 320
     public function escape($string)
321 321
     {
Please login to merge, or discard this patch.