/**
 * Returns the category service.
 *
 * @param   array   $options  The options
 * @param   string  $section  The section
 *
 * @return  CategoryInterface
 *
 * @since   4.0.0
 * @throws  SectionNotFoundException
 */
public function getCategory(array $options = [], $section = '') : CategoryInterface
{
    return $this->categoryFactory->createCategory($options, $section);
}