/**
 * Returns the MVC factory.
 *
 * @return  MVCFactoryInterface
 *
 * @since   4.0.0
 * @throws  \UnexpectedValueException
 */
protected function getMVCFactory() : MVCFactoryInterface
{
    if ($this->mvcFactory) {
        return $this->mvcFactory;
    }
    throw new \UnexpectedValueException('MVC Factory not set in ' . __CLASS__);
}