├── composer.json └── src ├── ConstantStrategy.php ├── DatabaseStrategy.php ├── Factory.php ├── FilteredOptionStore.php ├── OptionStore.php ├── OptionStoreInterface.php └── StrategyInterface.php /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-option-store/HEAD/composer.json -------------------------------------------------------------------------------- /src/ConstantStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-option-store/HEAD/src/ConstantStrategy.php -------------------------------------------------------------------------------- /src/DatabaseStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-option-store/HEAD/src/DatabaseStrategy.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-option-store/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/FilteredOptionStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-option-store/HEAD/src/FilteredOptionStore.php -------------------------------------------------------------------------------- /src/OptionStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-option-store/HEAD/src/OptionStore.php -------------------------------------------------------------------------------- /src/OptionStoreInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-option-store/HEAD/src/OptionStoreInterface.php -------------------------------------------------------------------------------- /src/StrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/wp-option-store/HEAD/src/StrategyInterface.php --------------------------------------------------------------------------------