/**
* 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;
}