$options */ public function __construct( private S3ClientInterface $client, private string $bucket, string $prefix = '', array $options = [], ) { parent::__construct( $client, $bucket, $prefix, null, null, $options, ); } public function getClient(): S3ClientInterface { return $this->client; } public function getBucket(): string { return $this->bucket; } }