| 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) |
|
| 44 | |||
| 45 | 2 | public function setValue($path, $value, $context = ConfigurationRepository::CONTEXT_DEFAULT) |
|
| 64 | |||
| 65 | public function create() |
||
| 69 | |||
| 70 | |||
| 71 | } |
||
| 72 |