Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace oat\ltiDeliveryProvider\model\execution; |
| 4 | |
| 5 | use oat\taoDelivery\model\execution\DeliveryExecutionInterface; |
| 6 | use oat\taoLti\models\classes\LtiLaunchData; |
| 7 | |
| 8 | interface LtiContextRepositoryInterface |
| 9 | { |
| 10 | public function findByDeliveryExecution(DeliveryExecutionInterface $deliveryExecution): ?LtiLaunchData; |
| 11 | |
| 12 | public function save(LtiLaunchData $ltiLaunchData, DeliveryExecutionInterface $deliveryExecution): void; |
| 13 | } |