| Total Complexity | 1 | 
| Total Lines | 22 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 10 | abstract class AbstractSerializerRequestTransformer implements RequestTransformerInterface  | 
            ||
| 11 | { | 
            ||
| 12 | /**  | 
            ||
| 13 | * @var SerializerInterface  | 
            ||
| 14 | */  | 
            ||
| 15 | protected $serializer;  | 
            ||
| 16 | |||
| 17 | /**  | 
            ||
| 18 | * @var ContextInterface|null  | 
            ||
| 19 | */  | 
            ||
| 20 | protected $context;  | 
            ||
| 21 | |||
| 22 | /**  | 
            ||
| 23 | * FormObjectTransformer constructor.  | 
            ||
| 24 | *  | 
            ||
| 25 | * @param SerializerInterface $serializer  | 
            ||
| 26 | * @param ContextInterface|null $context  | 
            ||
| 27 | */  | 
            ||
| 28 | 10 | public function __construct(SerializerInterface $serializer, ContextInterface $context = null)  | 
            |
| 34 |