OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
google
/
gax
/
src
/
Testing
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:01 AM
rwxr-xr-x
📄
GeneratedTest.php
3.89 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MessageAwareArrayComparator.php
934 bytes
08/12/2024 10:34:00 AM
rw-r--r--
📄
MessageAwareExporter.php
1.32 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockBidiStreamingCall.php
5.69 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockClientStreamingCall.php
4.37 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockGrpcTransport.php
4.17 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockRequest.php
1.96 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockRequestBody.php
17.32 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockResponse.php
4.32 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockServerStreamingCall.php
3.61 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockStatus.php
1.99 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockStubTrait.php
11.13 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockTransport.php
4.18 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockUnaryCall.php
3.13 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
ProtobufGPBEmptyComparator.php
2.19 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
ProtobufMessageComparator.php
2.75 KB
08/12/2024 10:34:01 AM
rw-r--r--
📄
ReceivedRequest.php
2.62 KB
08/12/2024 10:34:01 AM
rw-r--r--
📄
SerializationTrait.php
2.56 KB
08/12/2024 10:34:01 AM
rw-r--r--
📄
mocks.proto
1.3 KB
08/12/2024 10:34:00 AM
rw-r--r--
Editing: MockRequest.php
Close
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: Testing/mocks.proto namespace Google\ApiCore\Testing; use Google\Protobuf\Internal\GPBUtil; use GPBMetadata\ApiCore\Testing\Mocks; /** * Generated from protobuf message <code>google.apicore.testing.MockRequest</code> * * @internal */ class MockRequest extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field <code>string page_token = 1;</code> */ protected $page_token = ''; /** * Generated from protobuf field <code>uint64 page_size = 2;</code> */ protected $page_size = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $page_token * @type int|string $page_size * } */ public function __construct($data = NULL) { Mocks::initOnce(); parent::__construct($data); } /** * Generated from protobuf field <code>string page_token = 1;</code> * @return string */ public function getPageToken() { return $this->page_token; } /** * Generated from protobuf field <code>string page_token = 1;</code> * @param string $var * @return $this */ public function setPageToken($var) { GPBUtil::checkString($var, True); $this->page_token = $var; return $this; } /** * Generated from protobuf field <code>uint64 page_size = 2;</code> * @return int|string */ public function getPageSize() { return $this->page_size; } /** * Generated from protobuf field <code>uint64 page_size = 2;</code> * @param int|string $var * @return $this */ public function setPageSize($var) { GPBUtil::checkUint64($var); $this->page_size = $var; return $this; } }