I'm getting an error on the array Array sizes are inconsistent
$result = $qb
->executeQuery()
->fetchAllAssociative();
$this->paginator->initialize(
new ArraySlicer($result),
new ArrayCounter($result),
new Criteria('created_at')
);
return $this->paginator->getSlice();
Array:
It works fine in another similar place, but here for some reason it doesn't.
What went wrong?
Symfony 7.1, php 8.2.
I'm getting an error on the array
Array sizes are inconsistent
Array: It works fine in another similar place, but here for some reason it doesn't. What went wrong?