BookStack\Services\AttachmentService::getAttachmentFromStorage PHP Method

getAttachmentFromStorage() public method

Get an attachment from storage.
public getAttachmentFromStorage ( Attachment $attachment ) : string
$attachment BookStack\Attachment
return string
    public function getAttachmentFromStorage(Attachment $attachment)
    {
        $attachmentPath = $this->getStorageBasePath() . $attachment->path;
        return $this->getStorage()->get($attachmentPath);
    }