aa787edb创建于 2024年7月6日历史提交
<?php

namespace App\Values\SongStorageMetadata;

class S3CompatibleMetadata extends SongStorageMetadata
{
    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;
    }
}