• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 <?php
2 # Generated by the protocol buffer compiler.  DO NOT EDIT!
3 # source: math.proto
4 
5 namespace Math;
6 
7 use Google\Protobuf\Internal\GPBType;
8 use Google\Protobuf\Internal\RepeatedField;
9 use Google\Protobuf\Internal\GPBUtil;
10 
11 /**
12  * Generated from protobuf message <code>math.FibArgs</code>
13  */
14 class FibArgs extends \Google\Protobuf\Internal\Message
15 {
16     /**
17      * Generated from protobuf field <code>int64 limit = 1;</code>
18      */
19     protected $limit = 0;
20 
21     /**
22      * Constructor.
23      *
24      * @param array $data {
25      *     Optional. Data for populating the Message object.
26      *
27      *     @type int|string $limit
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 limit = 1;</code>
37      * @return int|string
38      */
39     public function getLimit()
40     {
41         return $this->limit;
42     }
43 
44     /**
45      * Generated from protobuf field <code>int64 limit = 1;</code>
46      * @param int|string $var
47      * @return $this
48      */
49     public function setLimit($var)
50     {
51         GPBUtil::checkInt64($var);
52         $this->limit = $var;
53 
54         return $this;
55     }
56 
57 }
58 
59