Scrutinizer Auto-Fixes

This patch was automatically generated as part of the following inspection:
https://scrutinizer-ci.com/g/timw4mail/Query/inspections/d131279f-a838-49e5-bbfb-20c256a06153

Enabled analysis tools:
 - PHP Analyzer
 - PHP Mess Detector
 - PHP Lines Of Code
 - PHP PDepend
 - External Code Coverage
 - PHP HHVM
 - PHP Similarity Analyzer
 - PHP Change Tracking Analyzer
This commit is contained in:
Scrutinizer Auto-Fixer 2014-08-08 20:02:14 +02:00 committed by Scrutinizer
parent 5968696c12
commit e51fe2be5f
2 changed files with 5 additions and 4 deletions

View File

@ -30,6 +30,7 @@ interface Driver_Interface {
* @param string $username * @param string $username
* @param string $password * @param string $password
* @param array $driver_options * @param array $driver_options
* @return void
*/ */
public function __construct($dsn, $username=NULL, $password=NULL, array $driver_options = array()); public function __construct($dsn, $username=NULL, $password=NULL, array $driver_options = array());
@ -218,14 +219,14 @@ interface Driver_Interface {
/** /**
* Get the SQL class for the current driver * Get the SQL class for the current driver
* *
* @return SQL_Interface * @return SQL\SQL_Interface
*/ */
public function get_sql(); public function get_sql();
/** /**
* Get the Util class for the current driver * Get the Util class for the current driver
* *
* @return Abstract_Util * @return Util\Abstract_Util
*/ */
public function get_util(); public function get_util();

View File

@ -81,7 +81,7 @@ SQL;
/** /**
* List the system tables * List the system tables
* *
* @return array * @return string[]
*/ */
public function system_table_list() public function system_table_list()
{ {
@ -107,7 +107,7 @@ SQL;
/** /**
* Returns sql to list triggers * Returns sql to list triggers
* *
* @return NULL * @return string
*/ */
public function trigger_list() public function trigger_list()
{ {