See Release Notes
[Summary view]
1 <?php 2 3 namespace Packback\Lti1p3\Interfaces; 4 5 interface ICookie 6 { 7 public function getCookie(string $name): ?string; 8 9 public function setCookie(string $name, string $value, $exp = 3600, $options = []): void; 10 }
title
Description
Body