Problem/Motivation
in php the function is defined like this:
protected function buildQuery($step, array $parameters = [], array $cache_options = [], $limit = NULL, $offset = NULL, $currentTimestamp = NULL) {
But when I call like this:
$this->buildQuery($step, $parameters, $cache_options, $currentTimestamp);
inside the buildQuery, $limit gets a default value as: 1689068264 - that's the timestamp, not the custom limit.
Steps to reproduce
Fix parameters ASAP.
Proposed resolution
Remaining tasks
User interface changes
API changes
Data model changes
Comments
Comment #4
kaszarobert