0 follower

Class Yiisoft\Yii\AuthClient\StateStorage\DummyStateStorage

InheritanceYiisoft\Yii\AuthClient\StateStorage\DummyStateStorage
ImplementsYiisoft\Yii\AuthClient\StateStorage\StateStorageInterface

Method Details

Hide inherited methods

get() public method

public mixed get ( string $key )
$key string

                #[\Override]
public function get(string $key): mixed
{
    return null;
}

            
remove() public method

public void remove ( string $key )
$key string

                #[\Override]
public function remove(string $key): void
{
    // do nothing
}

            
set() public method

public void set ( string $key, mixed $value )
$key string
$value mixed

                #[\Override]
public function set(string $key, $value): void
{
    // do nothing
}