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