1 | <?php |
||
10 | class SettingRepository extends EntityRepository implements SettingRepositoryInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var array Settings |
||
14 | */ |
||
15 | protected $settings; |
||
16 | |||
17 | public function offsetExists($offset) |
||
25 | |||
26 | public function offsetGet($offset) |
||
34 | |||
35 | public function offsetSet($offset, $value) |
||
39 | |||
40 | public function offsetUnset($offset) |
||
44 | |||
45 | protected function loadSettings() |
||
56 | } |
||
57 |