1 | <?php |
||
13 | final class ErrorMapping implements NormalizationObjectMappingInterface |
||
14 | { |
||
15 | /** |
||
16 | * @return string |
||
17 | */ |
||
18 | 1 | public function getClass(): string |
|
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | 1 | public function getNormalizationType(): string |
|
30 | |||
31 | /** |
||
32 | * @param string $path |
||
33 | * |
||
34 | * @return NormalizationFieldMappingInterface[] |
||
35 | */ |
||
36 | 1 | public function getNormalizationFieldMappings(string $path): array |
|
46 | |||
47 | /** |
||
48 | * @param string $path |
||
49 | * |
||
50 | * @return NormalizationFieldMappingInterface[] |
||
51 | */ |
||
52 | 1 | public function getNormalizationEmbeddedFieldMappings(string $path): array |
|
56 | |||
57 | /** |
||
58 | * @param string $path |
||
59 | * |
||
60 | * @return NormalizationLinkMappingInterface[] |
||
61 | */ |
||
62 | 1 | public function getNormalizationLinkMappings(string $path): array |
|
66 | } |
||
67 |