2024-02-05 11:50:06 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Values\SongStorageMetadata;
|
|
|
|
|
2024-04-26 13:35:26 +00:00
|
|
|
final class DropboxMetadata extends SongStorageMetadata
|
2024-02-05 11:50:06 +00:00
|
|
|
{
|
2024-02-05 21:17:41 +00:00
|
|
|
private function __construct(public string $path)
|
2024-02-05 11:50:06 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2024-02-05 21:17:41 +00:00
|
|
|
public static function make(string $key): self
|
2024-02-05 11:50:06 +00:00
|
|
|
{
|
2024-04-26 13:35:26 +00:00
|
|
|
return new self($key);
|
2024-02-05 11:50:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getPath(): string
|
|
|
|
{
|
2024-02-05 21:17:41 +00:00
|
|
|
return $this->path;
|
2024-02-05 13:27:17 +00:00
|
|
|
}
|
2024-02-05 11:50:06 +00:00
|
|
|
}
|