The method normalizeArrays() does not exist on LaravelFreelancerNL\Flue...ormalizesArrayFunctions. Did you maybe mean normalizeLast()?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
16
$this->/** @scrutinizer ignore-call */
17
normalizeArrays($queryBuilder);
This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
Loading history...
17
2
}
18
19
1
protected function normalizeLast(QueryBuilder $queryBuilder)
20
{
21
1
$this->normalizeArrays($queryBuilder);
22
1
}
23
24
2
protected function normalizeLength(QueryBuilder $queryBuilder)
25
{
26
2
$this->normalizeArrays($queryBuilder);
27
2
}
28
29
1
protected function normalizeCountDistinct(QueryBuilder $queryBuilder)
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.