Commit 0aacaa91 authored by Benjamin Eberlei's avatar Benjamin Eberlei

Remove instance of array_push()

parent d397c005
......@@ -142,7 +142,7 @@ class CreateSchemaSqlCollector extends AbstractVisitor
foreach (array_keys($this->createTableQueries) as $namespace) {
if ($this->platform->supportsSchemas() && $this->platform->schemaNeedsCreation($namespace)) {
$query = $this->platform->getCreateSchemaSQL($namespace);
array_push($sql, $query);
$sql[] = $query;
}
}
......
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