public functionclear() : void {
// clear out the bags and nothing else that may be set// since the purpose of this driver is to share a handlerforeach ($this->bags as $bag) {
$bag->clear();
}
// reconnect the bags to the session$this->loadSession();
}