mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 03:35:02 +02:00
* feat(admin): migrate db dumps from github to platform * style: fix StyleCI findings
19 lines
248 B
PHP
19 lines
248 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts\Storage;
|
|
|
|
/**
|
|
* Class InteractsWithDisks.
|
|
*/
|
|
interface InteractsWithDisks
|
|
{
|
|
/**
|
|
* The list of disk names.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function disks(): array;
|
|
}
|