PHP 8.2.31
Preview: StorageInterface.php Size: 909 B
/var/softaculous/sitepad/editor/site-data/plugins/loginizer/lib/hybridauth/Storage/StorageInterface.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();
}

Directory Contents

Dirs: 0 × Files: 3

Name Size Perms Modified Actions
2.96 KB lrw-r--r-- 2026-04-22 07:17:42
Edit Download
909 B lrw-r--r-- 2026-04-22 07:17:42
Edit Download
3.06 KB lrw-r--r-- 2026-04-22 07:17:42
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).