/**
 * Method to parse the queries specified in the `<sql>` tags
 *
 * @return  void
 *
 * @since   4.0.0
 * @throws  \RuntimeException
 */
protected function parseQueries()
{
    parent::parseQueries();
    // We have extra tasks to run for the uninstall path
    if ($this->route === 'uninstall') {
        $this->_removeAdminMenus($this->extension->extension_id);
    }
}