1 | <?php |
||
7 | final class NormalizerContext implements NormalizerContextInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var string[] |
||
11 | */ |
||
12 | private $groups = []; |
||
13 | |||
14 | /** |
||
15 | * @param string[] $groups |
||
16 | */ |
||
17 | public function __construct(array $groups = []) |
||
21 | |||
22 | /** |
||
23 | * @return string[] |
||
24 | */ |
||
25 | public function getGroups(): array |
||
29 | } |
||
30 |