offsetSet() 공개 메소드

Sets a variable in this session section.
public offsetSet ( $name, $value ) : void
리턴 void
예제 #1
0
 /**
  * @param  string
  * @param  mixed
  * @return self
  */
 public function set($name, $value)
 {
     $this->session->offsetSet($name, $value);
     return $this;
 }