mirror of
https://github.com/koel/koel
synced 2024-12-19 00:53:05 +00:00
21 lines
396 B
PHP
21 lines
396 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Values\SongStorageMetadata;
|
||
|
|
||
|
class S3CompatibleMetadata implements StorageMetadata
|
||
|
{
|
||
|
private function __construct(public string $bucket, public string $key)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public static function make(string $bucket, string $key): self
|
||
|
{
|
||
|
return new static($bucket, $key);
|
||
|
}
|
||
|
|
||
|
public function getPath(): string
|
||
|
{
|
||
|
return $this->key;
|
||
|
}
|
||
|
}
|