Skip to content

Commit 3e00a60

Browse files
authored
fix: return one dimensional array of sql strings for TYPO3 (#27)
Refs: #26
1 parent a9e85d3 commit 3e00a60

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

Classes/DynamicModel/DynamicModelGenerator.php

+5-7
Original file line numberDiff line numberDiff line change
@@ -171,13 +171,11 @@ public function addSchemasForAllModules(array $sqlString): array
171171
}
172172
}
173173
}
174-
return [
175-
array_merge(
176-
$sqlString,
177-
$schemaFromModules,
178-
$staticSchemasFromExtensions
179-
)
180-
];
174+
return array_merge(
175+
$sqlString,
176+
$schemaFromModules,
177+
$staticSchemasFromExtensions
178+
);
181179
}
182180

183181
/**

0 commit comments

Comments
 (0)