(NFC) Update CRM/Contact to match new coder style
[civicrm-core.git] / CRM / Contact / Form / Task / AddToGroup.php
index c14badd6520ba18f92922779df4712a40b68be31..2958f6e98eff204d0520096d588fb2dc244aa9ab 100644 (file)
@@ -221,22 +221,22 @@ class CRM_Contact_Form_Task_AddToGroup extends CRM_Contact_Form_Task {
 
     $status = [
       ts('%count contact added to group', [
-          'count' => $added,
-          'plural' => '%count contacts added to group',
+        'count' => $added,
+        'plural' => '%count contacts added to group',
       ]),
     ];
     if ($notAdded) {
       $status[] = ts('%count contact was already in group', [
-          'count' => $notAdded,
-          'plural' => '%count contacts were already in group',
-        ]);
+        'count' => $notAdded,
+        'plural' => '%count contacts were already in group',
+      ]);
     }
     $status = '<ul><li>' . implode('</li><li>', $status) . '</li></ul>';
     CRM_Core_Session::setStatus($status, ts('Added Contact to %1', [
-          1 => $groupName,
-          'count' => $added,
-          'plural' => 'Added Contacts to %1',
-        ]), 'success', ['expires' => 0]);
+      1 => $groupName,
+      'count' => $added,
+      'plural' => 'Added Contacts to %1',
+    ]), 'success', ['expires' => 0]);
 
     if ($this->_context === 'amtg') {
       CRM_Core_Session::singleton()