Ejemplo n.º 1
0
 /**
  * Removes the named value
  *
  * @param string $name
  * @return void
  */
 public function remove($name)
 {
     if ($this->container instanceof WP_Session) {
         $this->container->offsetUnset($name);
     } else {
         $this->container->remove($name);
     }
 }