From 51698d325b32625b469a28fecf6cc344f3e9a57d Mon Sep 17 00:00:00 2001 From: Frode Petterson Date: Mon, 9 May 2016 11:53:12 +0200 Subject: [PATCH] Corrected file storage interface --- h5p-file-storage.interface.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/h5p-file-storage.interface.php b/h5p-file-storage.interface.php index 1ae1b47..a003256 100644 --- a/h5p-file-storage.interface.php +++ b/h5p-file-storage.interface.php @@ -150,7 +150,7 @@ interface H5PFileStorage { * Used when saving content. * * @param string $file path + name - * @param int $contentid + * @param int $contentId * @return string|int File ID or NULL if not found */ public function getContentFile($file, $contentId); @@ -160,8 +160,7 @@ interface H5PFileStorage { * Used when saving content. * * @param string $file path + name - * @param int $contentid - * @return string|int File ID or NULL if not found + * @param int $contentId */ public function removeContentFile($file, $contentId); }