EscolaLMS/H5P

View on GitHub
src/Repositories/Contracts/H5PFrameworkInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace EscolaLms\HeadlessH5P\Repositories\Contracts;

use H5PFrameworkInterface as H5PFrameworkInterfaceCore;

interface H5PFrameworkInterface extends H5PFrameworkInterfaceCore
{
    public function setMainData(array $mainData): void;
    public function getDownloadFile($id);
}