mirror of
https://github.com/bitinflow/bunny-cli.git
synced 2026-03-13 13:45:54 +00:00
12 lines
151 B
PHP
12 lines
151 B
PHP
<?php
|
|
|
|
namespace App\Bunny\Filesystem;
|
|
|
|
interface FileStreamable
|
|
{
|
|
/**
|
|
* @return resource|string
|
|
*/
|
|
public function getResource();
|
|
}
|