uawdijnntqw1x1x1
IP : 18.221.69.38
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
/
Message.php
/
/
<?php namespace Protobuf; use Protobuf\ComputeSizeContext; use Protobuf\Configuration; use Protobuf\WriteContext; use Protobuf\ReadContext; /** * Base interface implemented by Protocol Message objects * * @author Fabio B. Silva <fabio.bat.silva@gmail.com> */ interface Message { /** * Creates message from the given stream. * * @param \Protobuf\Stream|resource|string $stream * @param \Protobuf\Configuration $configuration * * @return \Protobuf\Message */ public static function fromStream($stream, Configuration $configuration = null); /** * Serializes the message and returns a stream containing its bytes. * * @param \Protobuf\Configuration $configuration * * @return \Protobuf\Stream */ public function toStream(Configuration $configuration = null); /** * Compute the number of bytes that would be needed to encode the message * * @param \Protobuf\ComputeSizeContext $context * * @return integer */ public function serializedSize(ComputeSizeContext $context); /** * Serializes the message and returns a stream containing its bytes. * * @param \Protobuf\ReadContext $context */ public function readFrom(ReadContext $context); /** * Encodes and writes the message * * @param \Protobuf\ReadContext $context * * @return \Protobuf\Stream */ public function writeTo(WriteContext $context); /** * Merge $context into the message being built. * * @param \Protobuf\Message $message */ public function merge(Message $message); /** * Obtain the list of unknown fields in this message. * * @return \Protobuf\UnknownFieldSet */ public function unknownFieldSet(); /** * Obtain the map of extensions in this message. * * @return \Protobuf\Extension\ExtensionFieldMap */ public function extensions(); /** * Reset all fields back to the initial values. */ public function clear(); }
/var/www/axolotl/data/www/kirov.axolotls.ru/bitrix/modules/pull/vendor/Protobuf/Message.php