Esempio n. 1
0
 /**
  * Set the existence of the session on the handler if applicable.
  *
  * @param  bool  $value
  * @return void
  */
 public function setExists($value)
 {
     if ($this->handler instanceof ExistenceAwareInterface) {
         $this->handler->setExists($value);
     }
 }