Merge pull request #2 from timw4mail/scrutinizer-patch-1
Scrutinizer Auto-Fixes
This commit is contained in:
commit
0ae237ab33
@ -82,7 +82,7 @@ abstract class DB_PDO extends PDO {
|
||||
*
|
||||
* @param string $sql
|
||||
* @param array $data
|
||||
* @return mixed PDOStatement / FALSE
|
||||
* @return PDOStatement PDOStatement / FALSE
|
||||
* @throws InvalidArgumentException
|
||||
*/
|
||||
public function prepare_query($sql, $data)
|
||||
|
@ -856,7 +856,7 @@ class Query_Builder implements iQuery_Builder {
|
||||
*
|
||||
* @param int $limit
|
||||
* @param int $offset
|
||||
* @return string
|
||||
* @return Query_Builder
|
||||
*/
|
||||
public function limit($limit, $offset=FALSE)
|
||||
{
|
||||
|
@ -108,7 +108,7 @@ class Firebird extends DB_PDO {
|
||||
* Wrapper public function to better match PDO
|
||||
*
|
||||
* @param string $sql
|
||||
* @return $this
|
||||
* @return Firebird_Result
|
||||
* @throws PDOException
|
||||
*/
|
||||
public function query($sql)
|
||||
@ -135,7 +135,7 @@ class Firebird extends DB_PDO {
|
||||
*
|
||||
* @param string $query
|
||||
* @param array $options
|
||||
* @return $this
|
||||
* @return Firebird_Result
|
||||
* @throws PDOException
|
||||
*/
|
||||
public function prepare($query, $options=NULL)
|
||||
@ -155,7 +155,7 @@ class Firebird extends DB_PDO {
|
||||
/**
|
||||
* Start a database transaction
|
||||
*
|
||||
* @return bool
|
||||
* @return boolean|null
|
||||
*/
|
||||
public function beginTransaction()
|
||||
{
|
||||
@ -193,7 +193,7 @@ class Firebird extends DB_PDO {
|
||||
*
|
||||
* @param string $sql
|
||||
* @param array $args
|
||||
* @return resource
|
||||
* @return Firebird_Result
|
||||
*/
|
||||
public function prepare_execute($sql, $args)
|
||||
{
|
||||
|
@ -126,7 +126,7 @@ class Firebird_Result extends PDOStatement {
|
||||
* Run a prepared statement query
|
||||
*
|
||||
* @param array $args
|
||||
* @return bool
|
||||
* @return Firebird_Result
|
||||
*/
|
||||
public function execute($args = NULL)
|
||||
{
|
||||
|
@ -79,7 +79,7 @@ class SQLite extends DB_PDO {
|
||||
/**
|
||||
* List system tables for the current database
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
public function get_system_tables()
|
||||
{
|
||||
|
@ -172,7 +172,7 @@ SQL;
|
||||
/**
|
||||
* SQL to show list of field types
|
||||
*
|
||||
* @return array
|
||||
* @return string[]
|
||||
*/
|
||||
public function type_list()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user