/**
* Adds Count Items for Category Manager.
*
* @param \stdClass[] $items The category objects
* @param string $section The section
*
* @return void
*
* @since 4.0.0
* @throws \Exception
*/
public function countItems(array $items, string $section)
{
$helper = $this->loadHelper();
if (!$helper || !\is_callable(array($helper, 'countItems'))) {
return;
}
$helper::countItems($items, $section);
}