uawdijnntqw1x1x1
IP : 18.191.17.175
Hostname : axolotl
Kernel : Linux axolotl 4.9.0-13-amd64 #1 SMP Debian 4.9.228-1 (2020-07-05) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
www
/
axolotl
/
data
/
www
/
kirov.axolotls.ru
/
bitrix
/
modules
/
pull
/
vendor
/
Protobuf
/
ReadContext.php
/
/
<?php namespace Protobuf; use Protobuf\Stream; use Protobuf\Binary\StreamReader; use Protobuf\Extension\ExtensionRegistry; /** * Read context * * @author Fabio B. Silva <fabio.bat.silva@gmail.com> */ class ReadContext { /** * @var \Protobuf\Extension\ExtensionRegistry */ private $extensionRegistry; /** * @var \Protobuf\Binary\StreamReader */ private $reader; /** * @var \Protobuf\Stream */ private $stream; /** * @var integer */ private $length; /** * @param \Protobuf\Stream|resource|string $stream * @param \Protobuf\Binary\StreamReader $reader * @param \Protobuf\Extension\ExtensionRegistry $extensionRegistry */ public function __construct($stream, StreamReader $reader, ExtensionRegistry $extensionRegistry = null) { if ( ! $stream instanceof \Protobuf\Stream) { $stream = Stream::wrap($stream); } $this->stream = $stream; $this->reader = $reader; $this->extensionRegistry = $extensionRegistry; } /** * Return a ExtensionRegistry. * * @return \Protobuf\Extension\ExtensionRegistry */ public function getExtensionRegistry() { return $this->extensionRegistry; } /** * @return \Protobuf\Binary\StreamReader */ public function getReader() { return $this->reader; } /** * @return \Protobuf\Stream */ public function getStream() { return $this->stream; } /** * @return integer */ public function getLength() { return $this->length; } /** * @param integer $length */ public function setLength($length) { $this->length = $length; } }
/var/www/axolotl/data/www/kirov.axolotls.ru/bitrix/modules/pull/vendor/Protobuf/ReadContext.php