src/Drivers/ReplIoDriverInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

declare(strict_types=1);

namespace Smuuf\Primi\Drivers;

interface ReplIoDriverInterface extends StdIoDriverInterface {

    public function addToHistory(string $item): void;
    public function loadHistory(string $path): void;
    public function storeHistory(string $path): void;

}