Passed
Push — master ( 7328de...3ad1c9 )
by Andreas
37:49 queued 25:28
created
lib/org/openpsa/projects/handler/task/resourcing.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             return new midcom_response_relocate($this->router->generate('task_view', ['guid' => $guid]));
59 59
         }
60 60
 
61
-        if (   $request->request->has('save')
61
+        if ($request->request->has('save')
62 62
             && $prospects = $request->request->all('org_openpsa_projects_prospects')) {
63 63
             $qb = org_openpsa_projects_task_resource_dba::new_query_builder();
64 64
             $qb->add_constraint('guid', 'IN', array_keys($prospects));
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
                     // create relatedto
90 90
                     org_openpsa_relatedto_plugin::create($event, 'org.openpsa.calendar', $this->_task, 'org.openpsa.projects');
91 91
                 }
92
-                if (   $update_prospect
92
+                if ($update_prospect
93 93
                     && !$prospect->update()) {
94 94
                     debug_add('Failed to update prospect: ' . midcom_connection::get_error_string(), MIDCOM_LOG_ERROR);
95 95
                 }
Please login to merge, or discard this patch.
lib/org/openpsa/invoices/scheduler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
         }
96 96
 
97 97
         // TODO: Warehouse management: create new order
98
-        if (   $this->_deliverable->end < $next_cycle_start
98
+        if ($this->_deliverable->end < $next_cycle_start
99 99
             && $this->_deliverable->end != 0) {
100 100
             debug_add('Do not register next cycle, the contract ends before');
101 101
             return $this->_deliverable->end_subscription();
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
         }
329 329
 
330 330
         //If previous cycle was run at the end of the month, the new one should be at the end of the month as well
331
-        if (   $date->format('t') == $date->format('j')
331
+        if ($date->format('t') == $date->format('j')
332 332
             && $new_date->format('t') != $new_date->format('j')) {
333 333
             $new_date->setDate((int) $new_date->format('Y'), (int) $new_date->format('m'), (int) $new_date->format('t'));
334 334
         }
Please login to merge, or discard this patch.
lib/org/openpsa/documents/handler/document/admin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
 
91 91
         $this->_controller = $this->load_controller();
92 92
 
93
-        if (   $data['enable_versioning']
93
+        if ($data['enable_versioning']
94 94
             && $request->request->count() > 0) {
95 95
             $this->_backup_attachment($request);
96 96
         }
Please login to merge, or discard this patch.
lib/org/openpsa/core/queryfilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
         $user = midcom::get()->auth->user->get_storage();
68 68
 
69 69
         if ($request->request->get('unset_filter') == $filter_id) {
70
-            if (   $user->get_parameter("org_openpsa_core_filter", $filter_id)
70
+            if ($user->get_parameter("org_openpsa_core_filter", $filter_id)
71 71
                 && !$user->delete_parameter("org_openpsa_core_filter", $filter_id)) {
72 72
                 $message_content = sprintf(
73 73
                     $l10n->get('the handed filter for %s could not be set as parameter'),
Please login to merge, or discard this patch.
lib/org/openpsa/reports/handler/invoices/report.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
     private function _get_invoices_for_subscription(org_openpsa_sales_salesproject_deliverable_dba $deliverable, midcom_services_at_entry_dba $at_entry) : array
58 58
     {
59
-        if (   $deliverable->invoiceByActualUnits
59
+        if ($deliverable->invoiceByActualUnits
60 60
             && $at_entry->arguments['cycle'] > 1) {
61 61
             $months = midcom_baseclasses_components_configuration::get('org.openpsa.sales', 'config')->get('subscription_profit_months');
62 62
             $cutoff = (new DateTime)->modify('-' . $months . ' months');
@@ -81,8 +81,8 @@  discard block
 block discarded – undo
81 81
         $time = $at_entry->start;
82 82
         $scheduler = new org_openpsa_invoices_scheduler($deliverable);
83 83
 
84
-        while (   $time < $this->_request_data['end']
85
-               && (   $time < $deliverable->end
84
+        while ($time < $this->_request_data['end']
85
+               && ($time < $deliverable->end
86 86
                    || $deliverable->continuous)) {
87 87
             $invoices[] = $this->get_invoice_for_deliverable($deliverable, $invoice_sum, $time, $calculation_base);
88 88
 
@@ -124,8 +124,8 @@  discard block
 block discarded – undo
124 124
         foreach ($qb->execute() as $at_entry) {
125 125
             try {
126 126
                 $deliverable = org_openpsa_sales_salesproject_deliverable_dba::get_cached($at_entry->arguments['deliverable']);
127
-                if (   $deliverable->continuous
128
-                    || (   $deliverable->start < $this->_request_data['end']
127
+                if ($deliverable->continuous
128
+                    || ($deliverable->start < $this->_request_data['end']
129 129
                         && $deliverable->end > $this->_request_data['start'])) {
130 130
                     $invoices = array_merge($invoices, $this->_get_invoices_for_subscription($deliverable, $at_entry));
131 131
                 }
Please login to merge, or discard this patch.
lib/org/openpsa/user/handler/person/account.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         $workflow = $this->get_workflow('datamanager', ['controller' => $data['controller']]);
45 45
         $response = $workflow->run($request);
46 46
 
47
-        if (   $workflow->get_state() == 'save'
47
+        if ($workflow->get_state() == 'save'
48 48
             && $this->create_account($this->person, $data["controller"]->get_form_values())) {
49 49
             midcom::get()->uimessages->add($this->_l10n->get('org.openpsa.user'), sprintf($this->_l10n->get('person %s created'), $this->person->name));
50 50
         }
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         $person = new midcom_db_person($guid);
78 78
         $accounthelper = new org_openpsa_user_accounthelper($person);
79 79
         if ($accounthelper->welcome_email()) {
80
-            midcom::get()->uimessages->add($this->_l10n->get($this->_component), sprintf($this->_l10n->get('password reset and mail to %s sent'), $person->email ));
80
+            midcom::get()->uimessages->add($this->_l10n->get($this->_component), sprintf($this->_l10n->get('password reset and mail to %s sent'), $person->email));
81 81
         } else {
82 82
             midcom::get()->uimessages->add($this->_l10n->get($this->_component), $accounthelper->errstr, 'error');
83 83
         }
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         $accounthelper = new org_openpsa_user_accounthelper($this->person);
134 134
 
135 135
         // Update account
136
-        if (   !$accounthelper->set_account($controller->get_form_values()["username"], $password)
136
+        if (!$accounthelper->set_account($controller->get_form_values()["username"], $password)
137 137
             && midcom_connection::get_error() != MGD_ERR_OK) {
138 138
             // Failure, give a message
139 139
             midcom::get()->uimessages->add($this->_l10n->get('org.openpsa.user'), $this->_l10n->get("failed to update the user account, reason") . ': ' . midcom_connection::get_error_string(), 'error');
Please login to merge, or discard this patch.
lib/org/openpsa/directmarketing/campaign/ruleresolver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
      */
271 271
     private function add_misc_rule(array $rule, string $class, string $person_property)
272 272
     {
273
-        $persons = [ 0 => -1];
273
+        $persons = [0 => -1];
274 274
         $match = $rule['match'];
275 275
         $constraint_match = "IN";
276 276
         if ($rule['match'] == '<>') {
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
         $ret = [];
343 343
 
344 344
         foreach ($object->get_properties() as $property) {
345
-            if (   $property[0] == '_'
345
+            if ($property[0] == '_'
346 346
                 || in_array($property, $skip_properties)) {
347 347
                 // Skip private or otherwise invalid properties
348 348
                 continue;
Please login to merge, or discard this patch.
lib/midcom/baseclasses/components/handler/dataexport.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         foreach ($this->_datamanagers as $type => $datamanager) {
109 109
             foreach ($datamanager->get_schema($this->schemas[$type])->get('fields') as $name => $config) {
110 110
                 $title = $config['title'];
111
-                if (   $this->include_totals
111
+                if ($this->include_totals
112 112
                     && $config['type'] == 'number') {
113 113
                     $this->_totals[$type . '-' . $name] = 0;
114 114
                 }
@@ -172,18 +172,18 @@  discard block
 block discarded – undo
172 172
                     $data = array_pad($data, $target_size, '');
173 173
                     continue;
174 174
                 }
175
-                $object =& $row[$type];
175
+                $object = & $row[$type];
176 176
 
177 177
                 $datamanager->set_storage($object, $this->schemas[$type]);
178 178
 
179
-                if (   $this->include_guid
179
+                if ($this->include_guid
180 180
                     && $type == $first_type) {
181 181
                     $data[] = $object->guid;
182 182
                 }
183 183
 
184 184
                 $csvdata = $datamanager->get_content_csv();
185 185
                 foreach ($datamanager->get_schema()->get('fields') as $fieldname => $config) {
186
-                    if (   $this->include_totals
186
+                    if ($this->include_totals
187 187
                         && $config['type'] == 'number') {
188 188
                         $this->_totals[$type . '-' . $fieldname] += $csvdata[$fieldname];
189 189
                     }
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
         if (empty($this->csv['charset'])) {
212 212
             // Default to ISO-LATIN-15 (Latin-1 with EURO sign etc)
213 213
             $this->csv['charset'] = 'ISO-8859-15';
214
-            if (   $request->server->has('HTTP_USER_AGENT')
214
+            if ($request->server->has('HTTP_USER_AGENT')
215 215
                 && !preg_match('/Windows/i', $request->server->get('HTTP_USER_AGENT'))) {
216 216
                 // Except when not on windows, then default to UTF-8
217 217
                 $this->csv['charset'] = 'UTF-8';
Please login to merge, or discard this patch.
lib/org/openpsa/directmarketing/handler/message/report.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         $qb_receipts->add_constraint('orgOpenpsaObtype', '=', org_openpsa_directmarketing_campaign_messagereceipt_dba::SENT);
34 34
         $qb_receipts->add_order('metadata.created');
35 35
         $receipts = $qb_receipts->execute_unchecked();
36
-        $receipt_data =& $this->_request_data['report']['receipt_data'];
36
+        $receipt_data = & $this->_request_data['report']['receipt_data'];
37 37
         $receipt_data['first_send'] = $receipts[0]->metadata->created ?? 0;
38 38
         $receipt_data['last_send'] = end($receipts)->metadata->created ?? 0;
39 39
         $receipt_data['sent'] = count($receipts);
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 
61 61
     private function _get_campaign_data(int $first_send)
62 62
     {
63
-        $campaign_data =& $this->_request_data['report']['campaign_data'];
63
+        $campaign_data = & $this->_request_data['report']['campaign_data'];
64 64
         $qb_unsub = org_openpsa_directmarketing_campaign_member_dba::new_query_builder();
65 65
         $qb_unsub->add_constraint('campaign', '=', $this->_message->campaign);
66 66
         $qb_unsub->add_constraint('orgOpenpsaObtype', '=', org_openpsa_directmarketing_campaign_member_dba::UNSUBSCRIBED);
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     private function _get_link_data($segmentation_param)
85 85
     {
86 86
         $this->_request_data['report']['link_data'] = [];
87
-        $link_data =& $this->_request_data['report']['link_data'];
87
+        $link_data = & $this->_request_data['report']['link_data'];
88 88
 
89 89
         $link_data['counts'] = [];
90 90
         $link_data['percentages'] = ['of_links' => [], 'of_recipients' => []];
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         foreach ($links as $link) {
111 111
             $segment = '';
112 112
             $segment_notfound = false;
113
-            if (   $segmentation_param
113
+            if ($segmentation_param
114 114
                 && !empty($link->person)) {
115 115
                 try {
116 116
                     $person = org_openpsa_contacts_person_dba::get_cached($link->person);
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
                     $segment_notfound = true;
123 123
                 }
124 124
                 $link_data['segments'][$segment] ??= $segment_prototype;
125
-                $segment_data =& $link_data['segments'][$segment];
125
+                $segment_data = & $link_data['segments'][$segment];
126 126
             } else {
127 127
                 $segment_data = $segment_prototype;
128 128
             }
@@ -230,15 +230,15 @@  discard block
 block discarded – undo
230 230
         $this->_initialize_field($array['percentages']['of_links'], $link);
231 231
         $this->_initialize_field($array['percentages']['of_recipients'], $link);
232 232
 
233
-        $link_data =& $this->_request_data['report']['link_data'];
234
-        $array['percentages']['of_links'][$link->target]['total'] = ($array['counts'][$link->target]['total']/$link_data['total'])*100;
235
-        $array['percentages']['of_links'][$link->target][$link->token] = ($array['counts'][$link->target][$link->token]/$link_data['total'])*100;
233
+        $link_data = & $this->_request_data['report']['link_data'];
234
+        $array['percentages']['of_links'][$link->target]['total'] = ($array['counts'][$link->target]['total'] / $link_data['total']) * 100;
235
+        $array['percentages']['of_links'][$link->target][$link->token] = ($array['counts'][$link->target][$link->token] / $link_data['total']) * 100;
236 236
 
237
-        $receipt_data =& $this->_request_data['report']['receipt_data'];
238
-        $array['percentages']['of_recipients'][$link->target]['total'] = ((count($array['counts'][$link->target])-1)/($receipt_data['sent']-$receipt_data['bounced']))*100;
239
-        $array['percentages']['of_recipients'][$link->target][$link->token] = ($array['counts'][$link->target][$link->token]/($receipt_data['sent']-$receipt_data['bounced']))*100;
237
+        $receipt_data = & $this->_request_data['report']['receipt_data'];
238
+        $array['percentages']['of_recipients'][$link->target]['total'] = ((count($array['counts'][$link->target]) - 1) / ($receipt_data['sent'] - $receipt_data['bounced'])) * 100;
239
+        $array['percentages']['of_recipients'][$link->target][$link->token] = ($array['counts'][$link->target][$link->token] / ($receipt_data['sent'] - $receipt_data['bounced'])) * 100;
240 240
 
241
-        if (   !isset($array['percentages']['of_recipients']['total'])
241
+        if (!isset($array['percentages']['of_recipients']['total'])
242 242
             || $array['percentages']['of_recipients'][$link->target]['total'] > $array['percentages']['of_recipients']['total']) {
243 243
             $array['percentages']['of_recipients']['total'] = $array['percentages']['of_recipients'][$link->target]['total'];
244 244
         }
Please login to merge, or discard this patch.