mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-05 04:05:07 +02:00
17 lines
243 B
PHP
17 lines
243 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts\Models;
|
|
|
|
interface Streamable
|
|
{
|
|
public function path(): string;
|
|
|
|
public function basename(): string;
|
|
|
|
public function mimetype(): string;
|
|
|
|
public function size(): int;
|
|
}
|