1 | <?php |
||
25 | class RemoteSettingProvider implements SettingProviderInterface |
||
26 | { |
||
27 | /** |
||
28 | * @var ObjectRepository |
||
29 | */ |
||
30 | private $repository; |
||
31 | |||
32 | public function __construct(ManagerRegistry $managerRegistry) |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function findUserSettings(string $owner): Collection |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | public function findGlobalSettings(): Collection |
||
52 | } |
||
53 |