s3Service = $s3Service; } /** * Stream the current song through S3. * Actually, we just redirect the request to the S3 object's location. */ public function stream() { // Get and redirect to the actual presigned-url return redirect($this->s3Service->getSongPublicUrl($this->song)); } }