| 1 | <?php |
||
| 9 | class Mongo implements StorageInterface |
||
| 10 | { |
||
| 11 | const TABLE = 'magium_configuration_values'; |
||
| 12 | |||
| 13 | private $mongo; |
||
| 14 | |||
| 15 | 6 | public function __construct( |
|
| 21 | |||
| 22 | 2 | public function getCollection() |
|
| 26 | |||
| 27 | 2 | public function getValue($path, $context = ConfigurationRepository::CONTEXT_DEFAULT) |
|
| 41 | |||
| 42 | 2 | public function setValue($path, $value, $context = ConfigurationRepository::CONTEXT_DEFAULT) |
|
| 58 | |||
| 59 | public function create() |
||
| 63 | |||
| 64 | |||
| 65 | } |
||
| 66 |