| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 11 | 
| Code Lines | 6 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php | ||
| 44 | public function getSerializer() | ||
| 45 |     { | ||
| 46 | $this->serializerBuilder | ||
| 47 | ->addDefaultListeners() | ||
| 48 |             ->configureListeners(function (EventDispatcherInterface $dispatcher) { | ||
| 49 | $dispatcher->addSubscriber(new JsonEventSubscriber($this->relationFactory)); | ||
| 50 | }) | ||
| 51 | ; | ||
| 52 | |||
| 53 | return $this->serializerBuilder->build(); | ||
| 54 | } | ||
| 55 | } | ||
| 56 |