1 | <?php |
||
14 | abstract class AbstractApiProblemMapping implements NormalizationObjectMappingInterface |
||
15 | { |
||
16 | /** |
||
17 | * @return string |
||
18 | */ |
||
19 | 1 | public function getNormalizationType(): string |
|
23 | |||
24 | /** |
||
25 | * @param string $path |
||
26 | * |
||
27 | * @return NormalizationFieldMappingInterface[] |
||
28 | */ |
||
29 | 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 |