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
...@@ -395,7 +395,7 @@ class Column extends AbstractAsset ...@@ -395,7 +395,7 @@ class Column extends AbstractAsset
/** /**
* @param Visitor $visitor * @param Visitor $visitor
*/ */
public function visit(\Doctrine\DBAL\Schema\Visitor $visitor) public function visit(Visitor $visitor)
{ {
$visitor->accept($this); $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