Files
animethemes-server/app/Contracts/Storage/InteractsWithDisk.php
T
paranarimasu 1d93000c6f feat(admin): migrate db dumps from github to platform (#463)
* feat(admin): migrate db dumps from github to platform

* style: fix StyleCI findings
2022-09-18 22:31:29 -05:00

19 lines
245 B
PHP

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