Files
animethemes-server/app/Contracts/Storage/InteractsWithDisk.php
T

14 lines
180 B
PHP

<?php
declare(strict_types=1);
namespace App\Contracts\Storage;
interface InteractsWithDisk
{
/**
* The name of the disk.
*/
public function disk(): string;
}