get() public méthode

Get value by key
public get ( string $key ) : mixed
$key string
Résultat mixed
Exemple #1
0
 /**
  * Complex test for __unset
  *
  * @covers \Bluz\Session\Session::delete()
  */
 public function testUnset()
 {
     $this->session->set('moo', 'maz');
     $this->session->delete('moo');
     $this->assertNull($this->session->get('moo'));
 }