storageBackend = new $storageBackend($CC_CONFIG[$storageBackend]); } public function getAbsoluteFilePath($resourceId) { return $this->storageBackend->getAbsoluteFilePath($resourceId); } public function getSignedURL($resourceId) { return $this->storageBackend->getSignedURL($resourceId); } public function getFileSize($resourceId) { return $this->storageBackend->getFileSize($resourceId); } public function deletePhysicalFile($resourceId) { $this->storageBackend->deletePhysicalFile($resourceId); } public function deleteAllCloudFileObjects() { $this->storageBackend->deleteAllCloudFileObjects(); } }