Skip to content

Commit a8574bf

Browse files
committed
Apply PR Feedback.
1 parent e23264c commit a8574bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

includes/class-mailchimp-form-submission.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ public function prepare_merge_fields_body( $merge_fields ) {
277277
public function prepare_groups_body( $interest_groups ) {
278278
// Bail if we don't have any interest groups
279279
if ( empty( $interest_groups ) ) {
280-
return new StdClass();
280+
return new stdClass();
281281
}
282282

283283
$groups = $this->set_all_groups_to_false( $interest_groups );
@@ -323,7 +323,7 @@ public function prepare_groups_body( $interest_groups ) {
323323
* @return stdClass
324324
*/
325325
public function set_all_groups_to_false( $interest_groups ) {
326-
$groups = new StdClass();
326+
$groups = new stdClass();
327327

328328
foreach ( $interest_groups as $interest_group ) {
329329
if ( 'hidden' !== $interest_group['type'] ) {

0 commit comments

Comments
 (0)