| 1 | <?php |
||
| 16 | final class SettingsFieldsGroupsList implements FieldsGroupsList |
||
| 17 | { |
||
| 18 | /** @var array */ |
||
| 19 | private $groups; |
||
| 20 | |||
| 21 | /** @var string */ |
||
| 22 | private $defaultGroup; |
||
| 23 | /** |
||
| 24 | * @var \Symfony\Component\Translation\TranslatorInterface |
||
| 25 | */ |
||
| 26 | private $translator; |
||
| 27 | |||
| 28 | public function __construct(TranslatorInterface $translator, $defaultGroup, array $groups) |
||
| 38 | |||
| 39 | public function getGroups() |
||
| 43 | |||
| 44 | public function getDefaultGroup() |
||
| 48 | } |
||
| 49 |