Piwik\Settings\Storage\Factory::getNonPersistentStorage PHP Метод

getNonPersistentStorage() публичный Метод

Get a storage with a backend that will never persist or load any value.
public getNonPersistentStorage ( string $key ) : Storage
$key string
Результат Storage
    public function getNonPersistentStorage($key)
    {
        return new Storage(new Backend\NullBackend($key));
    }