Final Class Yiisoft\Session\NullSession
| Inheritance | Yiisoft\Session\NullSession |
|---|---|
| Implements | Yiisoft\Session\SessionInterface |
Public Methods
Method Details
| public mixed get ( string $key, mixed $default = null ) | ||
| $key | string | |
| $default | mixed | |
public function get(string $key, $default = null)
{
return null;
}
| public boolean has ( string $key ) | ||
| $key | string | |
public function has(string $key): bool
{
return false;
}
| public mixed pull ( string $key, mixed $default = null ) | ||
| $key | string | |
| $default | mixed | |
public function pull(string $key, $default = null)
{
return null;
}
| public void set ( string $key, mixed $value ) | ||
| $key | string | |
| $value | mixed | |
public function set(string $key, $value): void
{
}
Signup or Login in order to comment.