| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public static function getMetadataFactory(object $serializer): MetadataFactory |
||
| 15 | { |
||
| 16 | // JMS Serializer 2.x & 3.x |
||
| 17 | $reflectionProperty = new \ReflectionProperty(get_class($serializer), 'factory'); |
||
| 18 | $reflectionProperty->setAccessible(true); |
||
| 19 | |||
| 20 | return $reflectionProperty->getValue($serializer); |
||
| 21 | } |
||
| 23 |