Closed
Description
Symfony version(s) affected
7.1.x
Description
Looking at the AbstractQuery option 'sizeLimit'
, it seems that this option is never used.
$resolver->setDefaults([
'filter' => '*',
'maxItems' => 0,
'sizeLimit' => 0,
'timeout' => 0,
'deref' => static::DEREF_NEVER,
'attrsOnly' => 0,
'scope' => static::SCOPE_SUB,
'pageSize' => 0,
]);
This is the only place where 'sizeLimit'
is referenced in the whole ldap
component
How to reproduce
☝️
Possible Solution
Remove unused option not to confuse the folks