We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
array_to_row
Currently we only have:
function array_to_rows(array $data, EntryFactory $entryFactory = new NativeEntryFactory(), array|Partitions $partitions = [], ?Schema $schema = null) : Rows
However there are a lot of scenarios where we might want to simply create one row from associative array (not list).
function array_to_rows(array $data, EntryFactory $entryFactory = new NativeEntryFactory(), ?Schema $schema = null) : Rows
Implementation of this function can be literally extracted from array_to_rows
array_to_rows
The text was updated successfully, but these errors were encountered:
Resolved by: #1149
Sorry, something went wrong.
stloyd
No branches or pull requests
Currently we only have:
However there are a lot of scenarios where we might want to simply create one row from associative array (not list).
Implementation of this function can be literally extracted from
array_to_rows
The text was updated successfully, but these errors were encountered: