- 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
70 lines
1.7 KiB
PHP
70 lines
1.7 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: analyticsMultiTracks.proto
|
|
|
|
namespace Rv\Analytics\MultiTracks;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.analytics.MultiTracks.Startup</code>
|
|
*/
|
|
class Startup extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>.rv.analytics.MultiTracks.Account account = 1;</code>
|
|
*/
|
|
protected $account = null;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type \Rv\Analytics\MultiTracks\Account $account
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\AnalyticsMultiTracks::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>.rv.analytics.MultiTracks.Account account = 1;</code>
|
|
* @return \Rv\Analytics\MultiTracks\Account|null
|
|
*/
|
|
public function getAccount()
|
|
{
|
|
return $this->account;
|
|
}
|
|
|
|
public function hasAccount()
|
|
{
|
|
return isset($this->account);
|
|
}
|
|
|
|
public function clearAccount()
|
|
{
|
|
unset($this->account);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>.rv.analytics.MultiTracks.Account account = 1;</code>
|
|
* @param \Rv\Analytics\MultiTracks\Account $var
|
|
* @return $this
|
|
*/
|
|
public function setAccount($var)
|
|
{
|
|
GPBUtil::checkMessage($var, \Rv\Analytics\MultiTracks\Account::class);
|
|
$this->account = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|