Files
bunny-cli/app/Bunny/Filesystem/FileStreamable.php
2021-07-22 16:42:01 +02:00

12 lines
151 B
PHP

<?php
namespace App\Bunny\Filesystem;
interface FileStreamable
{
/**
* @return resource|string
*/
public function getResource();
}