Commit 3d34f266 authored by guilhermeblanco's avatar guilhermeblanco

[2.0][DDC-395] Applied the provided patch of Jordi Boggiano removing some...

[2.0][DDC-395] Applied the provided patch of Jordi Boggiano removing some trailing whitespaces and fixing missing public keywords
parent c680b8fe
...@@ -124,9 +124,9 @@ class TableDiff ...@@ -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;
......
...@@ -36,7 +36,7 @@ interface TreeWalker ...@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment