File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ public function build(array $parameters): void
7272 } elseif ('privateConnection ' === $ property ) {
7373 $ this ->privateConnection = new DatabaseConnection ($ value );
7474 } 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 );
7676 } elseif ('maintenanceWindow ' === $ property ) {
7777 $ this ->maintenanceWindow = new DatabaseMaintenanceWindow ($ value );
7878 } 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
4444 $ property = static ::convertToCamelCase ($ property );
4545
4646 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 );
4848 } 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 );
5050 } elseif (\property_exists ($ this , $ property )) {
5151 $ this ->$ property = $ value ;
5252 }
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ public function build(array $parameters): void
5959 $ property = static ::convertToCamelCase ($ property );
6060
6161 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 );
6363 } elseif ('healthCheck ' === $ property ) {
6464 $ this ->healthCheck = new HealthCheck ($ value );
6565 } elseif ('stickySessions ' === $ property ) {
You can’t perform that action at this time.
0 commit comments