File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ public function build(array $parameters): void
72
72
} elseif ('privateConnection ' === $ property ) {
73
73
$ this ->privateConnection = new DatabaseConnection ($ value );
74
74
} elseif ('users ' === $ property ) {
75
- $ this ->users = array_map (fn ($ v ) => new DatabaseUser ($ v ), $ value );
75
+ $ this ->users = \ array_map (fn ($ v ) => new DatabaseUser ($ v ), $ value );
76
76
} elseif ('maintenanceWindow ' === $ property ) {
77
77
$ this ->maintenanceWindow = new DatabaseMaintenanceWindow ($ value );
78
78
} elseif (\property_exists ($ this , $ property )) {
Original file line number Diff line number Diff line change @@ -44,9 +44,9 @@ public function build(array $parameters): void
44
44
$ property = static ::convertToCamelCase ($ property );
45
45
46
46
if ('inbound_rules ' === $ property ) {
47
- $ this ->inboundRules = array_map (fn ($ v ) => new FirewallRuleInbound ($ v ), $ value );
47
+ $ this ->inboundRules = \ array_map (fn ($ v ) => new FirewallRuleInbound ($ v ), $ value );
48
48
} elseif ('outbound_rules ' === $ property ) {
49
- $ this ->outboundRules = array_map (fn ($ v ) => new FirewallRuleOutbound ($ v ), $ value );
49
+ $ this ->outboundRules = \ array_map (fn ($ v ) => new FirewallRuleOutbound ($ v ), $ value );
50
50
} elseif (\property_exists ($ this , $ property )) {
51
51
$ this ->$ property = $ value ;
52
52
}
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ public function build(array $parameters): void
59
59
$ property = static ::convertToCamelCase ($ property );
60
60
61
61
if ('forwardingRules ' === $ property ) {
62
- $ this ->forwardingRules = array_map (fn ($ v ) => new ForwardingRule ($ v ), $ value );
62
+ $ this ->forwardingRules = \ array_map (fn ($ v ) => new ForwardingRule ($ v ), $ value );
63
63
} elseif ('healthCheck ' === $ property ) {
64
64
$ this ->healthCheck = new HealthCheck ($ value );
65
65
} elseif ('stickySessions ' === $ property ) {
You can’t perform that action at this time.
0 commit comments