tflori/hugga

View on GitHub
src/OutputInterface.php

Summary

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

namespace Hugga;

interface OutputInterface
{
    public function write(string $str);

    public function delete(int $count);

    public function deleteLine();

    public function getResource();
}