PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
mycred
/
addons
/
buy-creds
/
gateways
/
Bitpay
/
Storage
<?php /** * @license Copyright 2011-2014 BitPay Inc., MIT License * see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE */ namespace Bitpay\Storage; /** * @package Bitcore */ interface StorageInterface { /** * @param KeyInterface $key */ public function persist(\Bitpay\KeyInterface $key); /** * @param string $id * * @return KeyInterface */ public function load($id); }
[+]
..
[-] MockStorage.php
[edit]
[-] StorageInterface.php
[edit]
[-] FilesystemStorage.php
[edit]
[-] EncryptedFilesystemStorage.php
[edit]