Skip to content

Commit

Permalink
fix: return one dimensional array of sql strings for TYPO3 (#27)
Browse files Browse the repository at this point in the history
Refs: #26
  • Loading branch information
websi authored Aug 5, 2024
1 parent a9e85d3 commit 3e00a60
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions Classes/DynamicModel/DynamicModelGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,11 @@ public function addSchemasForAllModules(array $sqlString): array
}
}
}
return [
array_merge(
$sqlString,
$schemaFromModules,
$staticSchemasFromExtensions
)
];
return array_merge(
$sqlString,
$schemaFromModules,
$staticSchemasFromExtensions
);
}

/**
Expand Down

0 comments on commit 3e00a60

Please sign in to comment.