@@ -507,7 +507,7 @@ public function control(string $fieldName, array $options = []): string
507507 $ options ['spacing ' ],
508508 $ options ['inline ' ],
509509 $ options ['nestedInput ' ],
510- $ options ['switch ' ]
510+ $ options ['switch ' ],
511511 );
512512
513513 $ result = parent ::control ($ fieldName , $ options );
@@ -542,7 +542,7 @@ protected function _spacingOptions(string $fieldName, array $options): array
542542 $ options ['templates ' ] += [
543543 'multicheckboxWrapper ' => sprintf (
544544 $ this ->templater ()->getConfig ('multicheckboxWrapper ' ),
545- $ options ['spacing ' ]
545+ $ options ['spacing ' ],
546546 ),
547547 ];
548548 }
@@ -997,7 +997,7 @@ protected function _tooltipOptions(string $fieldName, array $options): array
997997 ) {
998998 $ tooltip = $ this ->templater ()->format (
999999 'tooltip ' ,
1000- ['content ' => $ options ['tooltip ' ]]
1000+ ['content ' => $ options ['tooltip ' ]],
10011001 );
10021002 $ options ['label ' ]['templateVars ' ]['tooltip ' ] = ' ' . $ tooltip ;
10031003 }
@@ -1134,7 +1134,7 @@ public function staticControl(string $fieldName, array $options = []): string
11341134
11351135 $ options = $ this ->_initInputField (
11361136 $ fieldName ,
1137- ['secure ' => static ::SECURE_SKIP ] + $ options
1137+ ['secure ' => static ::SECURE_SKIP ] + $ options,
11381138 );
11391139
11401140 $ content = $ options ['escape ' ] ? h ($ options ['val ' ]) : $ options ['val ' ];
@@ -1151,7 +1151,7 @@ public function staticControl(string $fieldName, array $options = []): string
11511151 $ this ->formProtector ->addField (
11521152 $ options ['name ' ],
11531153 true ,
1154- (string )$ options ['val ' ]
1154+ (string )$ options ['val ' ],
11551155 );
11561156 }
11571157
@@ -1246,7 +1246,7 @@ protected function _processFormOptions(array $options): array
12461246
12471247 if (!in_array ($ options ['align ' ], static ::ALIGN_TYPES )) {
12481248 throw new InvalidArgumentException (
1249- 'Invalid valid for `align` option. Valid values are: ' . implode (', ' , static ::ALIGN_TYPES )
1249+ 'Invalid valid for `align` option. Valid values are: ' . implode (', ' , static ::ALIGN_TYPES ),
12501250 );
12511251 }
12521252
@@ -1278,7 +1278,7 @@ protected function _processFormOptions(array $options): array
12781278 $ this ->_spacing ,
12791279 'align-items-center ' ,
12801280 ],
1281- $ options
1281+ $ options,
12821282 );
12831283 $ options ['templates ' ] += $ templates ;
12841284
@@ -1287,19 +1287,19 @@ protected function _processFormOptions(array $options): array
12871287
12881288 $ templates ['label ' ] = sprintf (
12891289 $ templates ['label ' ],
1290- $ this ->_gridClass (static ::GRID_COLUMN_ONE )
1290+ $ this ->_gridClass (static ::GRID_COLUMN_ONE ),
12911291 );
12921292 $ templates ['radioLabel ' ] = sprintf (
12931293 $ templates ['radioLabel ' ],
1294- $ this ->_gridClass (static ::GRID_COLUMN_ONE )
1294+ $ this ->_gridClass (static ::GRID_COLUMN_ONE ),
12951295 );
12961296 $ templates ['multicheckboxLabel ' ] = sprintf (
12971297 $ templates ['multicheckboxLabel ' ],
1298- $ this ->_gridClass (static ::GRID_COLUMN_ONE )
1298+ $ this ->_gridClass (static ::GRID_COLUMN_ONE ),
12991299 );
13001300 $ templates ['formGroup ' ] = sprintf (
13011301 $ templates ['formGroup ' ],
1302- $ this ->_gridClass (static ::GRID_COLUMN_TWO )
1302+ $ this ->_gridClass (static ::GRID_COLUMN_TWO ),
13031303 );
13041304
13051305 $ offsetGridClass = implode (' ' , [
0 commit comments