Merge pull request #5 from timw4mail/scrutinizer-patch-3
Fix some Docblocks
This commit is contained in:
commit
d89f34b177
@ -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();
|
||||
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user