1<?php 2# Generated by the protocol buffer compiler. DO NOT EDIT! 3# source: math.proto 4 5namespace Math; 6 7use Google\Protobuf\Internal\GPBType; 8use Google\Protobuf\Internal\RepeatedField; 9use Google\Protobuf\Internal\GPBUtil; 10 11/** 12 * Generated from protobuf message <code>math.Num</code> 13 */ 14class Num extends \Google\Protobuf\Internal\Message 15{ 16 /** 17 * Generated from protobuf field <code>int64 num = 1;</code> 18 */ 19 protected $num = 0; 20 21 /** 22 * Constructor. 23 * 24 * @param array $data { 25 * Optional. Data for populating the Message object. 26 * 27 * @type int|string $num 28 * } 29 */ 30 public function __construct($data = NULL) { 31 \GPBMetadata\Math::initOnce(); 32 parent::__construct($data); 33 } 34 35 /** 36 * Generated from protobuf field <code>int64 num = 1;</code> 37 * @return int|string 38 */ 39 public function getNum() 40 { 41 return $this->num; 42 } 43 44 /** 45 * Generated from protobuf field <code>int64 num = 1;</code> 46 * @param int|string $var 47 * @return $this 48 */ 49 public function setNum($var) 50 { 51 GPBUtil::checkInt64($var); 52 $this->num = $var; 53 54 return $this; 55 } 56 57} 58 59