get() public method

{@inheritDoc}
public get ( )
Esempio n. 1
0
 public function testGet()
 {
     $cookie = new NativeCookie('__sentinel');
     $this->assertNull($cookie->get());
     $_COOKIE['__sentinel'] = serialize('bar');
     $this->assertEquals('bar', $cookie->get());
 }