Scrutinizer Auto-Fixes

This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
This commit is contained in:
Scrutinizer Auto-Fixer 2015-07-29 20:59:27 +00:00
parent 8511c6a445
commit f3769ba372
3 changed files with 6 additions and 6 deletions

View File

@ -219,14 +219,14 @@ interface Driver_Interface {
/**
* Get the SQL class for the current driver
*
* @return SQL\SQL_Interface
* @return SQL_Interface
*/
public function get_sql();
/**
* Get the Util class for the current driver
*
* @return Util\Abstract_Util
* @return Abstract_Util
*/
public function get_util();

View File

@ -178,7 +178,7 @@ class Driver extends \Query\Abstract_Driver {
* Wrapper public function to better match PDO
*
* @param string $sql
* @return Firebird_Result
* @return Result
* @throws PDOException
*/
public function query($sql = '')
@ -206,7 +206,7 @@ class Driver extends \Query\Abstract_Driver {
*
* @param string $query
* @param array $options
* @return Firebird_Result
* @return Result
* @throws \PDOException
*/
public function prepare($query, $options=array())
@ -281,7 +281,7 @@ class Driver extends \Query\Abstract_Driver {
*
* @param string $sql
* @param array $args
* @return Firebird_Result
* @return Result
*/
public function prepare_execute($sql, $args)
{

View File

@ -138,7 +138,7 @@ class Result extends \PDOStatement {
* Run a prepared statement query
*
* @param array $args
* @return Firebird_Result
* @return Result
*/
public function execute($args = NULL)
{