Back to Installer class

Method getManifest

public \SimpleXMLElement
getManifest
()
Get the installation manifest object
Returns
  • \SimpleXMLElement Manifest object
Since
  • 3.1
Class: Installer
Project: Joomla

Method getManifest - Source code

/**
 * Get the installation manifest object
 *
 * @return  \SimpleXMLElement  Manifest object
 *
 * @since   3.1
 */
public function getManifest()
{
    if (!\is_object($this->manifest)) {
        $this->findManifest();
    }
    return $this->manifest;
}