Skip to content

Instantly share code, notes, and snippets.

View heyrocker's full-sized avatar

Greg Dunlap heyrocker

View GitHub Profile
interface KeyValueInterface {
/**
* Constructs a new key/value collection.
*
* @param $collection
* The collection for which the object is created.
*/
function __construct($collection);
/**
interface KeyValueInterface
class ConfigStorage implements KeyValueInterface
class FileConfigStorage extends ConfigStorage
class SignedFileConfigStorage extends FileConfigStorage
class ActiveConfigStorage extends ConfigStorage
class SQLActiveConfigStorage extends ActiveConfigStorage
class RedisActiveConfigStorage extends ActiveConfigStorage