put() public method

{@inheritDoc}
public put ( $value )
Exemplo n.º 1
0
 public function testPut()
 {
     $session = new NativeSession('__sentinel');
     $class = new stdClass();
     $class->foo = 'bar';
     $session->put($class);
     $this->assertEquals(serialize($class), $_SESSION['__sentinel']);
     unset($_SESSION['__sentinel']);
 }