laminas / laminas-navigation

Manage trees of pointers to web pages in order to build navigation systems
https://docs.laminas.dev/laminas-navigation/
BSD 3-Clause "New" or "Revised" License
17 stars 11 forks source link

Description of the method `Laminas\View\Helper\Navigation\AbstractHelper::setUseAcl()` is missing #48

Open froschdesign opened 1 year ago

froschdesign commented 1 year ago
/**
 * 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