get() public méthode

Returns the Sentinel cookie value.
public get ( ) : mixed
Résultat mixed
 /**
  * {@inheritDoc}
  */
 public function check()
 {
     if ($code = $this->session->get()) {
         return $code;
     }
     if ($code = $this->cookie->get()) {
         return $code;
     }
 }