mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 11:45:00 +02:00
* feat(admin): migrate db dumps from github to platform * style: fix StyleCI findings
19 lines
245 B
PHP
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;
|
|
}
|