- 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
87 lines
1.9 KiB
PHP
87 lines
1.9 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: timedPlayback.proto
|
|
|
|
namespace Rv\Data\TimedPlayback\Timing;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.data.TimedPlayback.Timing.Internal</code>
|
|
*/
|
|
class Internal extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>double duration = 1;</code>
|
|
*/
|
|
protected $duration = 0.0;
|
|
/**
|
|
* Generated from protobuf field <code>bool should_loop = 2;</code>
|
|
*/
|
|
protected $should_loop = false;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type float $duration
|
|
* @type bool $should_loop
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\TimedPlayback::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>double duration = 1;</code>
|
|
* @return float
|
|
*/
|
|
public function getDuration()
|
|
{
|
|
return $this->duration;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>double duration = 1;</code>
|
|
* @param float $var
|
|
* @return $this
|
|
*/
|
|
public function setDuration($var)
|
|
{
|
|
GPBUtil::checkDouble($var);
|
|
$this->duration = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool should_loop = 2;</code>
|
|
* @return bool
|
|
*/
|
|
public function getShouldLoop()
|
|
{
|
|
return $this->should_loop;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>bool should_loop = 2;</code>
|
|
* @param bool $var
|
|
* @return $this
|
|
*/
|
|
public function setShouldLoop($var)
|
|
{
|
|
GPBUtil::checkBool($var);
|
|
$this->should_loop = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|