From bb8e0cc90e254c5dd332020918a0edfc7220d8e8 Mon Sep 17 00:00:00 2001
From: Thomas <technisandk@gmail.com>
Date: Tue, 17 Mar 2020 22:02:41 +0100
Subject: [PATCH] Fix indentation of multi-line function call

---
 data/SugarBean.php | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/data/SugarBean.php b/data/SugarBean.php
index 8833098649..4565c35734 100755
--- a/data/SugarBean.php
+++ b/data/SugarBean.php
@@ -2067,12 +2067,12 @@ class SugarBean
             // Link2 style
             if ($begin_index != 0 || $end_index != -1 || !empty($deleted) || !empty($optional_where) || !empty($order_by)) {
                 return array_values($this->$field_name->getBeans(array(
-                        'where' => $optional_where,
-                        'deleted' => $deleted,
-                        'offset' => $begin_index,
-                        'limit' => ($end_index - $begin_index),
-                        'order_by' => $order_by
-                    )));
+                    'where' => $optional_where,
+                    'deleted' => $deleted,
+                    'offset' => $begin_index,
+                    'limit' => ($end_index - $begin_index),
+                    'order_by' => $order_by
+                )));
             }
             return array_values($this->$field_name->getBeans());
         }