10 lines
244 B
PHP
Executable File
10 lines
244 B
PHP
Executable File
<?php
|
|
|
|
namespace TrafficCophp\ByteBuffer;
|
|
|
|
abstract class AbstractBuffer implements ReadableBuffer, WriteableBuffer {
|
|
abstract public function __construct($length);
|
|
abstract public function __toString();
|
|
abstract public function length();
|
|
}
|