2024-02-04 20:31:01 +00:00
|
|
|
<?php
|
|
|
|
|
2024-02-23 18:36:02 +00:00
|
|
|
namespace App\Values\SongStorageMetadata\Contracts;
|
2024-02-04 20:31:01 +00:00
|
|
|
|
2024-02-05 11:50:06 +00:00
|
|
|
interface SongStorageMetadata
|
2024-02-04 20:31:01 +00:00
|
|
|
{
|
|
|
|
public function getPath(): string;
|
|
|
|
}
|