get() public method

{@inheritDoc}
public get ( )
Exemplo n.º 1
0
 public function testGet()
 {
     $session = new IlluminateSession($store = m::mock('Illuminate\\Session\\Store'), 'foo');
     $store->shouldReceive('get')->with('foo')->once()->andReturn('bar');
     $this->assertEquals('bar', $session->get());
 }