@@ -66,7 +66,7 @@ discard block |
||
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 |
||
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 |
||
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() |
@@ -259,7 +259,7 @@ |
||
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 | { |
@@ -10,8 +10,8 @@ |
||
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 |