Skip to content

Commit

Permalink
Correct Column->getDefault() annotation (#6125)
Browse files Browse the repository at this point in the history
  • Loading branch information
lolli42 committed Oct 6, 2023
1 parent 31919d2 commit 5b7bd66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Schema/Column.php
Expand Up @@ -36,7 +36,7 @@ class Column extends AbstractAsset
/** @var bool */
protected $_notnull = true;

/** @var string|null */
/** @var mixed */
protected $_default;

/** @var bool */
Expand Down Expand Up @@ -278,7 +278,7 @@ public function getNotnull()
return $this->_notnull;
}

/** @return string|null */
/** @return mixed */
public function getDefault()
{
return $this->_default;
Expand Down

0 comments on commit 5b7bd66

Please sign in to comment.