- Move src/, tests/, bin/, generated/, proto/, composer.json, composer.lock, phpunit.xml from php/ to repo root - Move ref/ to doc/reference_samples/ for better organization - Remove vendor/ from git tracking (now properly gitignored) - Update all test file paths (dirname adjustments and ref/ -> doc/reference_samples/) - Update all documentation paths (AGENTS.md, doc/*.md) - Remove php.bak/ directory - All 252 tests pass
114 lines
2.5 KiB
PHP
114 lines
2.5 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: testPattern.proto
|
|
|
|
namespace Rv\Data\TestPatternDefinition;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.data.TestPatternDefinition.StringProperty</code>
|
|
*/
|
|
class StringProperty extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>string value = 1;</code>
|
|
*/
|
|
protected $value = '';
|
|
/**
|
|
* Generated from protobuf field <code>int32 min_chars = 2;</code>
|
|
*/
|
|
protected $min_chars = 0;
|
|
/**
|
|
* Generated from protobuf field <code>int32 max_chars = 3;</code>
|
|
*/
|
|
protected $max_chars = 0;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type string $value
|
|
* @type int $min_chars
|
|
* @type int $max_chars
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\TestPattern::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string value = 1;</code>
|
|
* @return string
|
|
*/
|
|
public function getValue()
|
|
{
|
|
return $this->value;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string value = 1;</code>
|
|
* @param string $var
|
|
* @return $this
|
|
*/
|
|
public function setValue($var)
|
|
{
|
|
GPBUtil::checkString($var, True);
|
|
$this->value = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 min_chars = 2;</code>
|
|
* @return int
|
|
*/
|
|
public function getMinChars()
|
|
{
|
|
return $this->min_chars;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 min_chars = 2;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setMinChars($var)
|
|
{
|
|
GPBUtil::checkInt32($var);
|
|
$this->min_chars = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 max_chars = 3;</code>
|
|
* @return int
|
|
*/
|
|
public function getMaxChars()
|
|
{
|
|
return $this->max_chars;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 max_chars = 3;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setMaxChars($var)
|
|
{
|
|
GPBUtil::checkInt32($var);
|
|
$this->max_chars = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|