Skip to content

Commit

Permalink
Merge pull request #403 from deeky666/DBAL-589
Browse files Browse the repository at this point in the history
[DBAL-589] Fix type hint in Column::visit()
  • Loading branch information
beberlei committed Nov 13, 2013
2 parents 59c310b + ff139d5 commit 69e91a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Doctrine/DBAL/Schema/Column.php
Expand Up @@ -25,7 +25,7 @@
/**
* Object representation of a database column
*
*
*
* @link www.doctrine-project.org
* @since 2.0
* @version $Revision$
Expand Down Expand Up @@ -395,7 +395,7 @@ public function getCustomSchemaOptions()
/**
* @param Visitor $visitor
*/
public function visit(\Doctrine\DBAL\Schema\Visitor $visitor)
public function visit(Visitor $visitor)
{
$visitor->accept($this);
}
Expand Down

0 comments on commit 69e91a3

Please sign in to comment.