Skip to content
New issue

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

Fix when first insert value is array #15

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

guram-vashakidze
Copy link
Contributor

@pdphilip hello,

thank you merge my previous PR. I faced one issue in insert flow. For example my index has next mapping:

'field_foo' => [
    'type' => 'text'
],
'field_bar' => [
    'type' => 'text'
],

If I insert in this way:

$index = new MyIndexModel();
$index->fill(['field_bar' => 'Bar value', 'field_foo' => ['Foo value 1', 'Foo value 2']])->save();

It works. But if I use next way:

$index = new MyIndexModel();
$index->fill(['field_foo' => ['Foo value 1', 'Foo value 2'], 'field_bar' => 'Bar value'])->save();

It doesn't work, because first value is array and current insert starts use every value like independent inserted doc.
I changed it to check array_is_list - looks it solved the issue. There is I see just one problem - this function appeared after PHP 8.0, but I saw that last version of your lib supports Laravel upper then 10.0 (which needed PHP 8.0+)

@guram-vashakidze guram-vashakidze marked this pull request as draft April 4, 2025 07:20
@guram-vashakidze guram-vashakidze marked this pull request as ready for review April 4, 2025 07:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant