```php /** * Sets whether ACL should be used * * Implements {@link HelperInterface::setUseAcl()}. * * @param bool $useAcl * @return AbstractHelper */ public function setUseAcl($useAcl = true) { $this->useAcl = (bool) $useAcl; return $this; } ``` https://github.com/laminas/laminas-view/blob/198f5945fd5025e5f791cb32749f9412270e71eb/src/Helper/Navigation/AbstractHelper.php#L787-L811 Related to https://github.com/laminas/laminas-view/issues/202