Session ID
You can use specific session ID by pasing it as the third parameter when creating a SessionInstance
:
use duncan3dc\Sessions\SessionInstance;
$session = new SessionInstance("session-name", null, "session-id");
You can then retrieve the current session ID like so:
$id = $session->getId();