| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | public function create( |
||
| 33 | $associationTree, |
||
| 34 | ?string $entityClassName |
||
| 35 | ): DeferredEntityLoader { |
||
| 36 | return new DeferredEntityLoader( |
||
| 37 | new EntitiesArgumentConverter(), |
||
| 38 | $this->entityLoader, |
||
| 39 | $this->associationsArgumentConverter->convertToAssociationTree($associationTree), |
||
| 40 | $entityClassName |
||
| 41 | ); |
||
| 44 |