1 | <?php |
||
11 | final class DenormalizationFieldMapping implements DenormalizationFieldMappingInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | private $name; |
||
17 | |||
18 | /** |
||
19 | * @deprecated |
||
20 | * |
||
21 | * @var array |
||
22 | */ |
||
23 | private $groups; |
||
24 | |||
25 | /** |
||
26 | * @var FieldDenormalizerInterface |
||
27 | */ |
||
28 | private $fieldDenormalizer; |
||
29 | |||
30 | /** |
||
31 | * @var PolicyInterface |
||
32 | */ |
||
33 | private $policy; |
||
34 | |||
35 | /** |
||
36 | * @param string $name |
||
37 | * @param array $groups |
||
38 | * @param FieldDenormalizerInterface $fieldDenormalizer |
||
39 | * @param PolicyInterface|null $policy |
||
40 | */ |
||
41 | 4 | public function __construct( |
|
52 | |||
53 | /** |
||
54 | * @return string |
||
55 | */ |
||
56 | 1 | public function getName(): string |
|
60 | |||
61 | /** |
||
62 | * @deprecated |
||
63 | * |
||
64 | * @return array |
||
65 | */ |
||
66 | 1 | public function getGroups(): array |
|
70 | |||
71 | /** |
||
72 | * @return FieldDenormalizerInterface |
||
73 | */ |
||
74 | 1 | public function getFieldDenormalizer(): FieldDenormalizerInterface |
|
78 | |||
79 | /** |
||
80 | * @return PolicyInterface |
||
81 | */ |
||
82 | 1 | public function getPolicy(): PolicyInterface |
|
86 | } |
||
87 |
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be removed from the class and what other property to use instead.