# loginizer/1.9.9/lib/hybridauth/Storage/StorageInterface.php

Loginizer, version 1.9.9. 51 lines.

- Page: https://pluginprobe.com/plugins/loginizer/1.9.9/code/lib/hybridauth/Storage/StorageInterface.php
- Raw: https://pluginprobe.com/plugins/loginizer/1.9.9/raw/lib/hybridauth/Storage/StorageInterface.php
- Modified: 2024-06-27T14:05:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/loginizer/1.9.9/code/lib/hybridauth/Storage/StorageInterface.php#L10-L20`.

```php
<?php
/*!
* Hybridauth
* https://hybridauth.github.io | https://github.com/hybridauth/hybridauth
*  (c) 2017 Hybridauth authors | https://hybridauth.github.io/license.html
*/

namespace Hybridauth\Storage;

/**
 * Hybridauth storage manager interface
 */
interface StorageInterface
{
    /**
     * Retrieve a item from storage
     *
     * @param string $key
     *
     * @return mixed
     */
    public function get($key);

    /**
     * Add or Update an item to storage
     *
     * @param string $key
     * @param string $value
     */
    public function set($key, $value);

    /**
     * Delete an item from storage
     *
     * @param string $key
     */
    public function delete($key);

    /**
     * Delete a item from storage
     *
     * @param string $key
     */
    public function deleteMatch($key);

    /**
     * Clear all items in storage
     */
    public function clear();
}

```
