From: Brett Profitt Date: Fri, 7 Dec 2012 22:01:39 +0000 (-0500) Subject: Fixed invalid type hint for ElggPluginManifestParser. X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=93e83fd9a7016e0b37ced978434c258dd69e6954;p=lorea%2Felgg.git Fixed invalid type hint for ElggPluginManifestParser. --- diff --git a/engine/classes/ElggPluginManifestParser.php b/engine/classes/ElggPluginManifestParser.php index b0480d4d8..af152b561 100644 --- a/engine/classes/ElggPluginManifestParser.php +++ b/engine/classes/ElggPluginManifestParser.php @@ -53,10 +53,10 @@ abstract class ElggPluginManifestParser { /** * Loads the manifest XML to be parsed. * - * @param XmlElement $xml The Manifest XML object to be parsed - * @param object $caller The object calling this parser. + * @param ElggXmlElement $xml The Manifest XML object to be parsed + * @param object $caller The object calling this parser. */ - public function __construct(XmlElement $xml, $caller) { + public function __construct(ElggXMLElement $xml, $caller) { $this->manifestObject = $xml; $this->caller = $caller; }