1 | <?php |
||
11 | class DoctrineSettingRepository implements SettingRepositoryInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var EntityManagerInterface |
||
15 | */ |
||
16 | private $entityManager; |
||
17 | |||
18 | public function __construct(EntityManagerInterface $entityManager) |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | public function findWithinSection(Key $settingKey, Section $settingSection) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function save(Setting $setting) |
||
48 | } |
||
49 |