Commit 1bbd3a7e authored by jeroendedauw's avatar jeroendedauw

Remove plain wrong type hint where none is needed to begin with

parent 2f002700
...@@ -247,7 +247,6 @@ class SQLServerPlatform extends AbstractPlatform ...@@ -247,7 +247,6 @@ class SQLServerPlatform extends AbstractPlatform
// @todo does other code breaks because of this? // @todo does other code breaks because of this?
// force primary keys to be not null // force primary keys to be not null
foreach ($columns as &$column) { foreach ($columns as &$column) {
/** @var $column \Doctrine\DBAL\Schema\Column */
if (isset($column['primary']) && $column['primary']) { if (isset($column['primary']) && $column['primary']) {
$column['notnull'] = true; $column['notnull'] = true;
} }
......
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