mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Array push on hot loop
This commit is contained in:
parent
2c790ecd84
commit
2f5e5d384f
1 changed files with 1 additions and 1 deletions
|
|
@ -433,7 +433,7 @@ class Realtime extends MessagingAdapter
|
||||||
}
|
}
|
||||||
|
|
||||||
if (in_array($method, [Query::TYPE_AND, Query::TYPE_OR], true)) {
|
if (in_array($method, [Query::TYPE_AND, Query::TYPE_OR], true)) {
|
||||||
$stack = array_merge($stack, $query->getValues());
|
\array_push($stack, ...$query->getValues());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue