/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
plugins
/
wp-content-crawler
/
app
/
vendor
/
google
/
common-protos
/
src
/
Api
/
Expr
/
V1alpha1
/
Decl
/
Upload File
HOME
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: google/api/expr/v1alpha1/checked.proto namespace Google\Api\Expr\V1alpha1\Decl; use Google\Protobuf\Internal\GPBType; use Google\Protobuf\Internal\RepeatedField; use Google\Protobuf\Internal\GPBUtil; /** * Function declaration specifies one or more overloads which indicate the * function's parameter types and return type, and may optionally specify a * function definition in terms of CEL expressions. * Functions have no observable side-effects (there may be side-effects like * logging which are not observable from CEL). * * Generated from protobuf message <code>google.api.expr.v1alpha1.Decl.FunctionDecl</code> */ class FunctionDecl extends \Google\Protobuf\Internal\Message { /** * Required. List of function overloads, must contain at least one overload. * * Generated from protobuf field <code>repeated .google.api.expr.v1alpha1.Decl.FunctionDecl.Overload overloads = 1;</code> */ private $overloads; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Google\Api\Expr\V1alpha1\Decl\FunctionDecl\Overload[]|\Google\Protobuf\Internal\RepeatedField $overloads * Required. List of function overloads, must contain at least one overload. * } */ public function __construct($data = NULL) { \GPBMetadata\Google\Api\Expr\V1Alpha1\Checked::initOnce(); parent::__construct($data); } /** * Required. List of function overloads, must contain at least one overload. * * Generated from protobuf field <code>repeated .google.api.expr.v1alpha1.Decl.FunctionDecl.Overload overloads = 1;</code> * @return \Google\Protobuf\Internal\RepeatedField */ public function getOverloads() { return $this->overloads; } /** * Required. List of function overloads, must contain at least one overload. * * Generated from protobuf field <code>repeated .google.api.expr.v1alpha1.Decl.FunctionDecl.Overload overloads = 1;</code> * @param \Google\Api\Expr\V1alpha1\Decl\FunctionDecl\Overload[]|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setOverloads($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Api\Expr\V1alpha1\Decl\FunctionDecl\Overload::class); $this->overloads = $arr; return $this; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FunctionDecl::class, \Google\Api\Expr\V1alpha1\Decl_FunctionDecl::class);