Corrected file storage interface

pull/22/head
Frode Petterson 2016-05-09 11:53:12 +02:00
parent a36b2f1212
commit 51698d325b
1 changed files with 2 additions and 3 deletions

View File

@ -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);
}