put() public méthode

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