filebackend: use self:: instead of FileBackend:: for some constant uses
[lhc/web/wiklou.git] / includes / libs / Message / MessageParam.php
index 8162212..b6475a7 100644 (file)
@@ -3,7 +3,9 @@
 namespace Wikimedia\Message;
 
 /**
- * The base class for message parameters.
+ * Value object representing a message parameter that consists of a list of values.
+ *
+ * Message parameter classes are pure value objects and are safely newable.
  */
 abstract class MessageParam {
        protected $type;
@@ -21,7 +23,7 @@ abstract class MessageParam {
        /**
         * Get the input value of the parameter
         *
-        * @return int|float|string|array
+        * @return mixed
         */
        public function getValue() {
                return $this->value;