| Total Complexity | 2 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class DeferredEntityLoaderFactory |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var EntityLoader |
||
| 13 | */ |
||
| 14 | protected $entityLoader; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var AssociationsArgumentConverter |
||
| 18 | */ |
||
| 19 | protected $associationsArgumentConverter; |
||
| 20 | |||
| 21 | public function __construct(EntityLoader $entityLoader) |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param AssociationTree|string[]|string $associationTree |
||
| 29 | * |
||
| 30 | * @throws \Exception |
||
| 31 | */ |
||
| 32 | public function create( |
||
| 44 |