| Total Complexity | 6 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | final class MetadataContextBuilder implements SerializerContextBuilderInterface |
||
| 24 | { |
||
| 25 | private SerializerContextBuilderInterface $decorated; |
||
| 26 | |||
| 27 | public function __construct(SerializerContextBuilderInterface $decorated) |
||
| 28 | { |
||
| 29 | $this->decorated = $decorated; |
||
| 30 | } |
||
| 31 | |||
| 32 | public function createFromRequest(Request $request, bool $normalization, array $extractedAttributes = null): array |
||
| 48 | } |
||
| 49 | } |
||
| 50 |