Remove all "@phpstan-ignore-line" entries.

This commit is contained in:
James Cole
2026-03-06 07:39:12 +01:00
parent 705138aa27
commit 12f19c6c34
78 changed files with 254 additions and 157 deletions

View File

@@ -552,7 +552,7 @@ class OperatorQuerySearch implements SearchInterface
return;
}
Log::debug(sprintf('Left with %d, set as %s().', $filtered->count(), $collectorMethod));
$this->collector->{$collectorMethod}($filtered); // @phpstan-ignore-line
$this->collector->{$collectorMethod}($filtered);
}
/**
@@ -661,7 +661,7 @@ class OperatorQuerySearch implements SearchInterface
return;
}
Log::debug(sprintf('Left with %d, set as %s().', $filtered->count(), $collectorMethod));
$this->collector->{$collectorMethod}($filtered); // @phpstan-ignore-line
$this->collector->{$collectorMethod}($filtered);
}
/**