1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +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

@ -95,7 +95,7 @@ class TableDiff
/** /**
* All added foreign key definitions * All added foreign key definitions
* *
* @var array * @var array
*/ */
public $addedForeignKeys = array(); public $addedForeignKeys = array();
@ -119,14 +119,14 @@ class TableDiff
* *
* @param array(string=>Column) $addedColumns * @param array(string=>Column) $addedColumns
* @param array(string=>Column) $changedColumns * @param array(string=>Column) $changedColumns
* @param array(string=>bool) $removedColumns * @param array(string=>bool) $removedColumns
* @param array(string=>Index) $addedIndexes * @param array(string=>Index) $addedIndexes
* @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

@ -23,7 +23,7 @@ namespace Doctrine\ORM\Query;
/** /**
* Interface for walkers of DQL ASTs (abstract syntax trees). * Interface for walkers of DQL ASTs (abstract syntax trees).
* *
* @author Roman Borschel <roman@code-factory.org> * @author Roman Borschel <roman@code-factory.org>
* @since 2.0 * @since 2.0
*/ */
@ -36,8 +36,8 @@ 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.
* *
@ -241,7 +241,7 @@ interface TreeWalker
* @return string The SQL. * @return string The SQL.
*/ */
function walkExistsExpression($existsExpr); function walkExistsExpression($existsExpr);
/** /**
* Walks down a CollectionMemberExpression AST node, thereby generating the appropriate SQL. * Walks down a CollectionMemberExpression AST node, thereby generating the appropriate SQL.
* *
@ -249,7 +249,7 @@ interface TreeWalker
* @return string The SQL. * @return string The SQL.
*/ */
function walkCollectionMemberExpression($collMemberExpr); function walkCollectionMemberExpression($collMemberExpr);
/** /**
* Walks down an EmptyCollectionComparisonExpression AST node, thereby generating the appropriate SQL. * Walks down an EmptyCollectionComparisonExpression AST node, thereby generating the appropriate SQL.
* *
@ -369,10 +369,10 @@ interface TreeWalker
* @return string The SQL. * @return string The SQL.
*/ */
function walkPathExpression($pathExpr); function walkPathExpression($pathExpr);
/** /**
* Gets an executor that can be used to execute the result of this walker. * Gets an executor that can be used to execute the result of this walker.
* *
* @return AbstractExecutor * @return AbstractExecutor
*/ */
function getExecutor($AST); function getExecutor($AST);