Add a getValue method...
authorSam Reed <reedy@users.mediawiki.org>
Mon, 12 Mar 2012 16:55:25 +0000 (16:55 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Mon, 12 Mar 2012 16:55:25 +0000 (16:55 +0000)
includes/Status.php

index 7b583b1..835b2ed 100644 (file)
@@ -357,4 +357,11 @@ class Status {
        public function getMessage() {
                return $this->getWikiText();
        }
+
+       /**
+        * @return mixed
+        */
+       public function getValue() {
+               return $this->value;
+       }
 }