Skip to content
Snippets Groups Projects
Commit 133e57b7 authored by Zigmas Satkevičius's avatar Zigmas Satkevičius
Browse files

Added missing type hint in FunctionScoreQuery.

Closes #74.
parent 664e62b1
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ class FunctionScoreQuery implements BuilderInterface
* @param array $functions
* @param array $parameters
*/
public function __construct(BuilderInterface $filterOrQuery, $functions, array $parameters = [])
public function __construct(BuilderInterface $filterOrQuery, array $functions, array $parameters = [])
{
$this->dslType = array_slice(explode('\\', get_class($filterOrQuery)), -2, 1)[0];
$this->filterOrQuery = $filterOrQuery;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment