aboutsummaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorBrett Profitt <brett.profitt@gmail.com>2012-12-07 17:01:39 -0500
committerBrett Profitt <brett.profitt@gmail.com>2012-12-07 17:01:39 -0500
commit93e83fd9a7016e0b37ced978434c258dd69e6954 (patch)
tree2d5b7849879039d58dda8f206a7eb79bd980bfd9 /engine
parenta60a58a6e884af4ab89b118bf2f23132335381fe (diff)
downloadelgg-93e83fd9a7016e0b37ced978434c258dd69e6954.tar.gz
elgg-93e83fd9a7016e0b37ced978434c258dd69e6954.tar.bz2
Fixed invalid type hint for ElggPluginManifestParser.
Diffstat (limited to 'engine')
-rw-r--r--engine/classes/ElggPluginManifestParser.php6
1 files changed, 3 insertions, 3 deletions
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;
}