class RawInputStream
Hierarchy
- class \Google\Protobuf\Internal\RawInputStream
Expanded class hierarchy of RawInputStream
File
-
vendor/
google/ protobuf/ src/ Google/ Protobuf/ Internal/ RawInputStream.php, line 12
Namespace
Google\Protobuf\InternalView source
class RawInputStream {
private $buffer;
public function __construct($buffer) {
$this->buffer = $buffer;
}
public function getData() {
return $this->buffer;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
RawInputStream::$buffer | private | property | |
RawInputStream::getData | public | function | |
RawInputStream::__construct | public | function |