From: Sam Reed Date: Mon, 12 Mar 2012 16:55:25 +0000 (+0000) Subject: Add a getValue method... X-Git-Tag: 1.31.0-rc.0~24288 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=16477dbb30a09f5cea478a84a6f1d21917eb2f6f;p=lhc%2Fweb%2Fwiklou.git Add a getValue method... --- diff --git a/includes/Status.php b/includes/Status.php index 7b583b1ee0..835b2edf56 100644 --- a/includes/Status.php +++ b/includes/Status.php @@ -357,4 +357,11 @@ class Status { public function getMessage() { return $this->getWikiText(); } + + /** + * @return mixed + */ + public function getValue() { + return $this->value; + } }