File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 24
24
use ProxyManager \GeneratorStrategy \FileWriterGeneratorStrategy ;
25
25
26
26
use function array_intersect ;
27
- use function array_merge_recursive ;
28
27
use function class_exists ;
29
28
use function get_class ;
30
29
use function gettype ;
@@ -754,13 +753,13 @@ private function createLazyServiceDelegatorFactory()
754
753
private function mergeDelegators (array $ config )
755
754
{
756
755
foreach ($ config as $ key => $ delegators ) {
757
- if (!isset ( $ this ->delegators [ $ key ] )) {
756
+ if (! array_key_exists ( $ key , $ this ->delegators )) {
758
757
$ this ->delegators [$ key ] = $ delegators ;
759
758
continue ;
760
759
}
761
760
762
761
foreach ($ delegators as $ delegator ) {
763
- if (!in_array ($ delegator , $ this ->delegators [$ key ], true )) {
762
+ if (! in_array ($ delegator , $ this ->delegators [$ key ], true )) {
764
763
$ this ->delegators [$ key ][] = $ delegator ;
765
764
}
766
765
}
You can’t perform that action at this time.
0 commit comments