]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Fixed invalid type hint for ElggPluginManifestParser.
authorBrett Profitt <brett.profitt@gmail.com>
Fri, 7 Dec 2012 22:01:39 +0000 (17:01 -0500)
committerBrett Profitt <brett.profitt@gmail.com>
Fri, 7 Dec 2012 22:01:39 +0000 (17:01 -0500)
engine/classes/ElggPluginManifestParser.php

index b0480d4d861fd760a62f91595eb85e831cef1fc5..af152b561ac5f20af00ef8a6dc8645dd45789144 100644 (file)
@@ -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;
        }