All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
78 lines
1.8 KiB
PHP
78 lines
1.8 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# source: google/api/client.proto
|
|
|
|
namespace Google\Api;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Settings for Php client libraries.
|
|
*
|
|
* Generated from protobuf message <code>google.api.PhpSettings</code>
|
|
*/
|
|
class PhpSettings extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Some settings.
|
|
*
|
|
* Generated from protobuf field <code>.google.api.CommonLanguageSettings common = 1;</code>
|
|
*/
|
|
protected $common = null;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type \Google\Api\CommonLanguageSettings $common
|
|
* Some settings.
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\Google\Api\Client::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Some settings.
|
|
*
|
|
* Generated from protobuf field <code>.google.api.CommonLanguageSettings common = 1;</code>
|
|
* @return \Google\Api\CommonLanguageSettings|null
|
|
*/
|
|
public function getCommon()
|
|
{
|
|
return $this->common;
|
|
}
|
|
|
|
public function hasCommon()
|
|
{
|
|
return isset($this->common);
|
|
}
|
|
|
|
public function clearCommon()
|
|
{
|
|
unset($this->common);
|
|
}
|
|
|
|
/**
|
|
* Some settings.
|
|
*
|
|
* Generated from protobuf field <code>.google.api.CommonLanguageSettings common = 1;</code>
|
|
* @param \Google\Api\CommonLanguageSettings $var
|
|
* @return $this
|
|
*/
|
|
public function setCommon($var)
|
|
{
|
|
GPBUtil::checkMessage($var, \Google\Api\CommonLanguageSettings::class);
|
|
$this->common = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|