21
21
use ProxyManager \GeneratorStrategy \EvaluatingGeneratorStrategy ;
22
22
use ProxyManager \GeneratorStrategy \FileWriterGeneratorStrategy ;
23
23
use Psr \Container \ContainerInterface ;
24
+ use Laminas \Stdlib \ArrayUtils ;
24
25
25
26
use function array_intersect ;
26
- use function array_merge_recursive ;
27
27
use function class_exists ;
28
28
use function get_class ;
29
29
use function gettype ;
@@ -363,7 +363,7 @@ public function configure(array $config)
363
363
}
364
364
365
365
if (isset ($ config ['delegators ' ])) {
366
- $ this ->delegators = array_merge_recursive ( $ this -> delegators , $ config ['delegators ' ]);
366
+ $ this ->mergeDelegators ( $ config ['delegators ' ]);
367
367
}
368
368
369
369
if (isset ($ config ['shared ' ])) {
@@ -384,7 +384,7 @@ public function configure(array $config)
384
384
// If lazy service configuration was provided, reset the lazy services
385
385
// delegator factory.
386
386
if (isset ($ config ['lazy_services ' ]) && ! empty ($ config ['lazy_services ' ])) {
387
- $ this ->lazyServices = array_merge_recursive ($ this ->lazyServices , $ config ['lazy_services ' ]);
387
+ $ this ->lazyServices = ArrayUtils:: merge ($ this ->lazyServices , $ config ['lazy_services ' ]);
388
388
$ this ->lazyServicesDelegator = null ;
389
389
}
390
390
@@ -737,6 +737,32 @@ private function createLazyServiceDelegatorFactory()
737
737
return $ this ->lazyServicesDelegator ;
738
738
}
739
739
740
+ /**
741
+ * Merge delegators avoiding multiple same delegators for the same service.
742
+ * It works with strings and class instances.
743
+ * It's not possible to de-duple anonymous functions
744
+ *
745
+ * @param string[][]|Factory\DelegatorFactoryInterface[][] $config
746
+ * @return string[][]|Factory\DelegatorFactoryInterface[][]
747
+ */
748
+ private function mergeDelegators (array $ config )
749
+ {
750
+ foreach ($ config as $ key => $ delegators ) {
751
+ if (! array_key_exists ($ key , $ this ->delegators )) {
752
+ $ this ->delegators [$ key ] = $ delegators ;
753
+ continue ;
754
+ }
755
+
756
+ foreach ($ delegators as $ delegator ) {
757
+ if (! in_array ($ delegator , $ this ->delegators [$ key ], true )) {
758
+ $ this ->delegators [$ key ][] = $ delegator ;
759
+ }
760
+ }
761
+ }
762
+
763
+ return $ this ->delegators ;
764
+ }
765
+
740
766
/**
741
767
* Create aliases and factories for invokable classes.
742
768
*
0 commit comments