You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
TAATP/src/SessionInterface.php

17 lines
351 B

<?php
namespace BradyMcD\TAATP;
/**
* Implements a session interaction wrapper.
* It is SUGGESTED that this be implemented by the user of this module.
*/
interface SessionInterface
{
function live(): bool;
function try_store(string $key, mixed $val): bool;
function store(string $key, mixed $val);
function get(string $key);
}
?>