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