Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
rekall
laravel-scout-solr
Commits
09322682
Commit
09322682
authored
May 22, 2018
by
Bert Balcaen
Browse files
Using NOT_SET for empty vals.
parent
d691aff5
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/SolrEngine.php
View file @
09322682
...
...
@@ -22,9 +22,9 @@ class SolrEngine extends Engine
foreach
(
$searchableArray
as
$key
=>
$value
)
{
if
(
empty
(
$value
))
{
if
(
is_string
(
$value
))
{
$value
=
'
null
'
;
$value
=
'
NOT_SET
'
;
}
else
if
(
is_array
(
$value
))
{
$value
=
[
'
null
'
];
$value
=
[
'
NOT_SET
'
];
}
$searchableArray
[
$key
]
=
$value
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment