| Total Complexity | 5 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | class WorkflowActionContextBuilder implements SerializerContextBuilderInterface |
||
| 24 | { |
||
| 25 | private $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 |
||
| 45 | } |
||
| 46 | } |
||
| 47 |