forget() public method

{@inheritDoc}
public forget ( )
 public function testForget()
 {
     $session = new IlluminateSession($store = m::mock('Illuminate\\Session\\Store'), 'foo');
     $store->shouldReceive('forget')->with('foo')->once();
     $session->forget();
 }