Passed
Push — master ( bdb120...ac8235 )
by Andreas
10:30
created
lib/midcom/helper/_dbfactory.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
             throw new midcom_error_midgard($e, $guid);
70 70
         }
71
-        if (   get_class($tmp) == 'midgard_person'
71
+        if (get_class($tmp) == 'midgard_person'
72 72
             && $this->person_class != 'midgard_person') {
73 73
             $tmp = new $this->person_class($guid);
74 74
         }
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         }
99 99
         $object = new $classname($src);
100 100
         $cache[$classname][$object->guid] = $object;
101
-        $cache[$classname][$object->id] =& $cache[$classname][$object->guid];
101
+        $cache[$classname][$object->id] = & $cache[$classname][$object->guid];
102 102
         return $cache[$classname][$object->guid];
103 103
     }
104 104
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
             return true;
146 146
         }
147 147
 
148
-        if (   isset($object->__object)
148
+        if (isset($object->__object)
149 149
             && is_object($object->__object)
150 150
             && $object->__object instanceof $class) {
151 151
             // Decorator whose MgdSchema object matches
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
             return $this->get_parent_data_uncached($object);
169 169
         });
170 170
 
171
-        if (   empty($parent_guid)
171
+        if (empty($parent_guid)
172 172
             || $parent_guid === $object->guid) {
173 173
             return null;
174 174
         }
Please login to merge, or discard this patch.
lib/org/openpsa/user/style/show-person-account.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
             echo '<p>' . sprintf($data['l10n']->get('account blocked %s minutes'), $data['config']->get('password_block_timeframe_min')) . '</p>';
17 17
         }
18 18
 
19
-        if (   $data['person']->guid == midcom::get()->auth->user->guid
19
+        if ($data['person']->guid == midcom::get()->auth->user->guid
20 20
             || midcom::get()->auth->can_user_do('org.openpsa.user:manage', null, org_openpsa_user_interface::class)) {
21 21
             $workflow = new midcom\workflow\datamanager;
22 22
             echo '<ul class="area_toolbar">';
@@ -25,9 +25,9 @@  discard block
 block discarded – undo
25 25
                 'object' => $data['person'],
26 26
                 'label' => $data['l10n']->get('account')
27 27
             ]);
28
-            echo '<li><a href="' . $data['router']->generate('account_delete', ['guid' => $data['person']->guid]). '" ' . $workflow->render_attributes() . ' class="button">';
28
+            echo '<li><a href="' . $data['router']->generate('account_delete', ['guid' => $data['person']->guid]) . '" ' . $workflow->render_attributes() . ' class="button">';
29 29
             echo '<span class="toolbar_label">' . $data['l10n_midcom']->get('delete') . '</span></a></li>';
30
-            if (    midcom::get()->config->get('auth_allow_trusted') === true
30
+            if (midcom::get()->config->get('auth_allow_trusted') === true
31 31
                  && $data['person']->can_do('org.openpsa.user:su')) {
32 32
                  echo '<li><a class="button" href="' . $data['router']->generate('account_su', ['guid' => $data['person']->guid]) . '">' . $data['l10n']->get('switch to user') . "</a></li>\n";
33 33
             }
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         }
36 36
     } else {
37 37
         echo '<p><span class="metadata">' . $data['l10n']->get("no account") . '</span></p>';
38
-        if (   $data['person']->guid == midcom::get()->auth->user->guid
38
+        if ($data['person']->guid == midcom::get()->auth->user->guid
39 39
             || midcom::get()->auth->can_user_do('org.openpsa.user:manage', null, org_openpsa_user_interface::class)) {
40 40
             $workflow = new midcom\workflow\datamanager;
41 41
             echo '<ul class="area_toolbar">';
Please login to merge, or discard this patch.
lib/midgard/admin/asgard/toolbar.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
             ];
143 143
         }
144 144
 
145
-        if (   midcom::get()->config->get('midcom_services_rcs_enable')
145
+        if (midcom::get()->config->get('midcom_services_rcs_enable')
146 146
             && $object->can_do('midgard:update')
147 147
             && $object->_use_rcs) {
148 148
             $buttons[] = [
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
     private function get_toolbar_update_items(midcom_core_dbaobject $object) : array
204 204
     {
205 205
         $buttons = [];
206
-        if (   $object instanceof midcom_db_topic
206
+        if ($object instanceof midcom_db_topic
207 207
             && $object->component
208 208
             && $object->can_do('midcom:component_config')) {
209 209
             $buttons[] = [
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
             MIDCOM_TOOLBAR_ENABLED => $object->can_do('midgard:privileges'),
242 242
         ];
243 243
 
244
-        if (   midcom::get()->componentloader->is_installed('midcom.helper.replicator')
244
+        if (midcom::get()->componentloader->is_installed('midcom.helper.replicator')
245 245
             && midcom::get()->auth->admin) {
246 246
             $buttons[] = [
247 247
                 MIDCOM_TOOLBAR_URL => "__mfa/asgard_midcom.helper.replicator/object/{$object->guid}/",
Please login to merge, or discard this patch.
src/midcom/httpkernel/subscriber.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
         $i = array_search('__request_data__', $arguments, true);
91 91
         if ($i !== false) {
92 92
             $context = $event->getRequest()->attributes->get('context');
93
-            $arguments[$i] =& $context->get_custom_key('request_data');
93
+            $arguments[$i] = & $context->get_custom_key('request_data');
94 94
             $event->setArguments($arguments);
95 95
         }
96 96
     }
Please login to merge, or discard this patch.
lib/midcom/baseclasses/components/viewer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -246,7 +246,7 @@
 block discarded – undo
246 246
      */
247 247
     public function prepare_handler(midcom_baseclasses_components_handler $handler, array &$parameters)
248 248
     {
249
-        $this->parameters =& $parameters;
249
+        $this->parameters = & $parameters;
250 250
 
251 251
         $parameters['handler'] = explode('::', $parameters['_controller'], 2);
252 252
 
Please login to merge, or discard this patch.
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/midcom/helper/metadata.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
     {
263 263
         if (in_array($key, $this->field_config['timebased'])) {
264 264
             // This is ugly, but seems the only possible way...
265
-            if (   isset($this->__metadata->$key)
265
+            if (isset($this->__metadata->$key)
266 266
                 && (string) $this->__metadata->$key !== "0001-01-01T00:00:00+00:00") {
267 267
                 return (int) $this->__metadata->$key->format('U');
268 268
             }
@@ -323,11 +323,11 @@  discard block
 block discarded – undo
323 323
         }
324 324
 
325 325
         $now = time();
326
-        if (   $this->get('schedulestart')
326
+        if ($this->get('schedulestart')
327 327
             && $this->get('schedulestart') > $now) {
328 328
             return false;
329 329
         }
330
-        if (   $this->get('scheduleend')
330
+        if ($this->get('scheduleend')
331 331
             && $this->get('scheduleend') < $now) {
332 332
             return false;
333 333
         }
@@ -343,9 +343,9 @@  discard block
 block discarded – undo
343 343
     public function is_object_visible_onsite() : bool
344 344
     {
345 345
         return
346
-        (   (   midcom::get()->config->get('show_hidden_objects')
346
+        ((midcom::get()->config->get('show_hidden_objects')
347 347
              || $this->is_visible())
348
-         && (   midcom::get()->config->get('show_unapproved_objects')
348
+         && (midcom::get()->config->get('show_unapproved_objects')
349 349
              || $this->is_approved())
350 350
         );
351 351
     }
@@ -402,7 +402,7 @@  discard block
 block discarded – undo
402 402
             $guid = $source;
403 403
         }
404 404
 
405
-        if (   $object === null
405
+        if ($object === null
406 406
             && mgd_is_guid($guid)) {
407 407
             try {
408 408
                 $object = midcom::get()->dbfactory->get_object_by_guid($guid);
@@ -435,7 +435,7 @@  discard block
 block discarded – undo
435 435
         }
436 436
 
437 437
         // Lock was created by the user, return "not locked"
438
-        if (   !empty(midcom::get()->auth->user->guid)
438
+        if (!empty(midcom::get()->auth->user->guid)
439 439
             && $this->get('locker') === midcom::get()->auth->user->guid) {
440 440
             return false;
441 441
         }
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
      */
463 463
     public function can_unlock() : bool
464 464
     {
465
-        return (   $this->__object->can_do('midcom:unlock')
465
+        return ($this->__object->can_do('midcom:unlock')
466 466
                 || midcom::get()->auth->can_user_do('midcom:unlock', null, midcom_services_auth::class));
467 467
     }
468 468
 
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.
src/midcom/grid/provider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
 
237 237
     private function _convert_to_localdata() : string
238 238
     {
239
-        return "var " . $this->_grid->get_identifier() . '_entries = ' .  json_encode($this->get_rows()) . ";\n";
239
+        return "var " . $this->_grid->get_identifier() . '_entries = ' . json_encode($this->get_rows()) . ";\n";
240 240
     }
241 241
 
242 242
     private function _render_json()
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
             $this->_sort_field = $query['sidx'];
270 270
             $this->_sort_direction = strtoupper($query['sord'] ?? 'ASC');
271 271
         }
272
-        if (   !empty($query['_search'])
272
+        if (!empty($query['_search'])
273 273
             && $query['_search'] === 'true') {
274 274
             foreach ($query as $field => $value) {
275 275
                 if (in_array($field, ['_search', 'nd', 'page', 'rows', 'sidx', 'sord'])) {
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
 
295 295
         $this->_total_rows = $query->count();
296 296
 
297
-        if (   $this->_datatype == 'json'
297
+        if ($this->_datatype == 'json'
298 298
             && !empty($this->_results_per_page)) {
299 299
             $query->set_limit($this->_results_per_page);
300 300
             if (!empty($this->_offset)) {
Please login to merge, or discard this patch.