| Total Complexity | 1 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | class BuilderFactory |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * Creates a Builder instance from the dependency injection container. |
||
| 28 | * |
||
| 29 | * @param ContainerInterface $container The DI container |
||
| 30 | * @return Builder The configured Builder instance |
||
| 31 | */ |
||
| 32 | public static function create(ContainerInterface $container): Builder |
||
| 37 |