1
0
mirror of synced 2025-01-31 12:32:59 +03:00

[2.0][DDC-395] Applied the provided patch of Jordi Boggiano removing some trailing whitespaces and fixing missing public keywords

This commit is contained in:
guilhermeblanco 2010-03-09 01:47:45 +00:00
parent c680b8fe1d
commit 3d34f266c6
2 changed files with 15 additions and 15 deletions

View File

@ -124,9 +124,9 @@ class TableDiff
* @param array(string=>Index) $changedIndexes * @param array(string=>Index) $changedIndexes
* @param array(string=>bool) $removedIndexes * @param array(string=>bool) $removedIndexes
*/ */
function __construct( $tableName, $addedColumns = array(), $changedColumns = array(), public function __construct($tableName, $addedColumns = array(),
$removedColumns = array(), $addedIndexes = array(), $changedIndexes = $changedColumns = array(), $removedColumns = array(), $addedIndexes = array(),
array(), $removedIndexes = array() ) $changedIndexes = array(), $removedIndexes = array())
{ {
$this->name = $tableName; $this->name = $tableName;
$this->addedColumns = $addedColumns; $this->addedColumns = $addedColumns;

View File

@ -36,7 +36,7 @@ interface TreeWalker
* @param ParserResult $parserResult The result of the parsing process. * @param ParserResult $parserResult The result of the parsing process.
* @param array $queryComponents Query components (symbol table) * @param array $queryComponents Query components (symbol table)
*/ */
function __construct($query, $parserResult, array $queryComponents); public function __construct($query, $parserResult, array $queryComponents);
/** /**
* Walks down a SelectStatement AST node, thereby generating the appropriate SQL. * Walks down a SelectStatement AST node, thereby generating the appropriate SQL.