koel/app/Values/SongStorageMetadata/DropboxMetadata.php

21 lines
349 B
PHP
Raw Normal View History

2024-02-05 11:50:06 +00:00
<?php
namespace App\Values\SongStorageMetadata;
class DropboxMetadata implements SongStorageMetadata
{
private function __construct(public string $path)
2024-02-05 11:50:06 +00:00
{
}
public static function make(string $key): self
2024-02-05 11:50:06 +00:00
{
return new static($key);
2024-02-05 11:50:06 +00:00
}
public function getPath(): string
{
return $this->path;
}
2024-02-05 11:50:06 +00:00
}