• Brent Shaffer's avatar
    PHP namespaces for nested messages and enums (#4536) · 67379546
    Brent Shaffer authored
    * uses namespaces for nested messages and enums
    
    * fixes namespaces for PHP dist
    
    * fixes namespace for Descriptors, adds Cardinality and Kind
    
    * fixes nested namespaces for reserved words and adds tests
    
    * adds tests and generator fix for php class prefixes
    
    * fixes escaping of protobuf packages, enum comments, misc others
    
    * nice refactor of generated code
    
    * adds class files for backwards compatibility
    
    * simplifies code with templates
    
    * adds compatibility files to makefile
    
    * cleanup of generator and fixes nested namespace bug
    
    * regenerates proto types
    
    * remove internal BC classes
    
    * adds deprecated warning, adds methods back
    
    * simplifies if statement
    
    * fixes dist files
    
    * addresses review comments
    
    * adds back TYPE_URL_PREFIX constant
    
    * adds @deprecated to old nested class files
    
    * skips tests which require a separate process when protobuf.so is enabled
    
    * Adds tests for legacy nested classes that do not require separate processes to test
    
    * uses legacy names for GPBUtil message check
    
    * adds block for IDE @deprecated message
    
    * Namespace for nested message/enum in c extension
    
    * Remove unused code
    67379546
UInt64Value.php 1.49 KB
<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/protobuf/wrappers.proto

namespace Google\Protobuf;

use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;

/**
 * Wrapper message for `uint64`.
 * The JSON representation for `UInt64Value` is JSON string.
 *
 * Generated from protobuf message <code>google.protobuf.UInt64Value</code>
 */
class UInt64Value extends \Google\Protobuf\Internal\Message
{
    /**
     * The uint64 value.
     *
     * Generated from protobuf field <code>uint64 value = 1;</code>
     */
    private $value = 0;

    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type int|string $value
     *           The uint64 value.
     * }
     */
    public function __construct($data = NULL) {
        \GPBMetadata\Google\Protobuf\Wrappers::initOnce();
        parent::__construct($data);
    }

    /**
     * The uint64 value.
     *
     * Generated from protobuf field <code>uint64 value = 1;</code>
     * @return int|string
     */
    public function getValue()
    {
        return $this->value;
    }

    /**
     * The uint64 value.
     *
     * Generated from protobuf field <code>uint64 value = 1;</code>
     * @param int|string $var
     * @return $this
     */
    public function setValue($var)
    {
        GPBUtil::checkUint64($var);
        $this->value = $var;

        return $this;
    }

}