aboutsummaryrefslogtreecommitdiffhomepage
path: root/php/src/Google/Protobuf/DoubleValue.php
diff options
context:
space:
mode:
Diffstat (limited to 'php/src/Google/Protobuf/DoubleValue.php')
-rw-r--r--php/src/Google/Protobuf/DoubleValue.php14
1 files changed, 12 insertions, 2 deletions
diff --git a/php/src/Google/Protobuf/DoubleValue.php b/php/src/Google/Protobuf/DoubleValue.php
index 6718ce3c..236d9182 100644
--- a/php/src/Google/Protobuf/DoubleValue.php
+++ b/php/src/Google/Protobuf/DoubleValue.php
@@ -23,9 +23,19 @@ class DoubleValue extends \Google\Protobuf\Internal\Message
*/
private $value = 0.0;
- public function __construct() {
+ /**
+ * Constructor.
+ *
+ * @param array $data {
+ * Optional. Data for populating the Message object.
+ *
+ * @type float $value
+ * The double value.
+ * }
+ */
+ public function __construct($data = NULL) {
\GPBMetadata\Google\Protobuf\Wrappers::initOnce();
- parent::__construct();
+ parent::__construct($data);
}
/**