/**
  * Set session ID.
  *
  * Only for testing
  *
  * @param mixed $id
  *
  * @private
  */
 public function setSession($id)
 {
     if ($this->outputVisitor instanceof Sessionable) {
         $this->outputVisitor->setSession($id);
     }
 }