<?php
declare(strict_types=1);

namespace FreshCloud\Mail\BaseStreamWrappers;

interface StreamWrapperInterface
{
    public function open(string $path, string $mode): bool;
    public function read(int $length): string;
    public function write(string $data): int;
    public function close(): void;
    public function tell(): int;
    public function seek(int $offset, int $whence = SEEK_SET): bool;
    public function eof(): bool;
}