12 lines
300 B
PHP
Executable File
12 lines
300 B
PHP
Executable File
<?php
|
|
|
|
namespace TrafficCophp\ByteBuffer;
|
|
|
|
interface ReadableBuffer {
|
|
public function read($start, $end);
|
|
public function readInt8($offset);
|
|
public function readInt16BE($offset);
|
|
public function readInt16LE($offset);
|
|
public function readInt32BE($offset);
|
|
public function readInt32LE($offset);
|
|
} |