Commit 69e91a3e authored by Benjamin Eberlei's avatar Benjamin Eberlei

Merge pull request #403 from deeky666/DBAL-589

[DBAL-589] Fix type hint in Column::visit()
parents 59c310ba ff139d55
......@@ -25,7 +25,7 @@ use Doctrine\DBAL\Schema\Visitor\Visitor;
/**
* Object representation of a database column
*
*
*
* @link www.doctrine-project.org
* @since 2.0
* @version $Revision$
......@@ -395,7 +395,7 @@ class Column extends AbstractAsset
/**
* @param Visitor $visitor
*/
public function visit(\Doctrine\DBAL\Schema\Visitor $visitor)
public function visit(Visitor $visitor)
{
$visitor->accept($this);
}
......
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