Passed
Push — master ( 7328de...3ad1c9 )
by Andreas
37:49 queued 25:28
created
lib/org/openpsa/products/viewer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,11 +30,11 @@
 block discarded – undo
30 30
         $object = $dm->get_storage()->get_value();
31 31
 
32 32
         $document = $indexer->new_document($dm);
33
-        if (   $config->get('enable_scheduling')
33
+        if ($config->get('enable_scheduling')
34 34
             && $object instanceof org_openpsa_products_product_dba) {
35 35
             // Check start/end for products
36
-            if (   $object->start > time()
37
-                || (   $object->end != 0
36
+            if ($object->start > time()
37
+                || ($object->end != 0
38 38
                     && $object->end < time())) {
39 39
                 // Not in market, remove from index
40 40
                 $indexer->delete($document->RI);
Please login to merge, or discard this patch.
lib/midgard/admin/asgard/handler/object/permissions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         $tmp = $this->_object;
83 83
 
84 84
         $i = 0;
85
-        while (   !empty($tmp->guid)
85
+        while (!empty($tmp->guid)
86 86
                && !($tmp instanceof midcom_db_topic)
87 87
                && $i < 100) {
88 88
             // Get the parent; wishing eventually to get a topic
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 
128 128
         $assignees = $this->load_assignees();
129 129
         $this->process_assignees($assignees, $schemadb);
130
-        $assignee_field =& $schemadb->get('privileges')->get_field('add_assignee');
130
+        $assignee_field = & $schemadb->get('privileges')->get_field('add_assignee');
131 131
 
132 132
         if (!$this->additional_assignee) {
133 133
             // Populate additional assignee selector
Please login to merge, or discard this patch.
lib/midcom/helper/imagepopup/handler/upload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         $temp = $request->files->get('file');
24 24
 
25 25
         // Verify file extension
26
-        if (   !$temp instanceof UploadedFile
26
+        if (!$temp instanceof UploadedFile
27 27
             || !in_array(strtolower($temp->getClientOriginalExtension()), ["gif", "jpg", "png"])) {
28 28
             throw new midcom_error('Invalid extension.');
29 29
         }
Please login to merge, or discard this patch.
lib/org/openpsa/contacts/handler/group/action.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,8 @@
 block discarded – undo
33 33
                 $member->require_do('midgard:update');
34 34
                 $member->extra = $request->request->get('title');
35 35
                 $response['status'] = $member->update();
36
-            } catch (midcom_error $e) {
36
+            }
37
+            catch (midcom_error $e) {
37 38
                 $e->log();
38 39
             }
39 40
             $response['message'] = midcom_connection::get_error_string();
Please login to merge, or discard this patch.
lib/org/openpsa/relatedto/handler/relatedto.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -196,10 +196,10 @@
 block discarded – undo
196 196
      *
197 197
      * @param array $link The necessary link information
198 198
      */
199
-    private function _render_line(array $link, midcom_core_dbaobject &$other_obj)
199
+    private function _render_line(array $link, midcom_core_dbaobject & $other_obj)
200 200
     {
201 201
         $this->_request_data['link'] = $link;
202
-        $this->_request_data['other_obj'] =& $other_obj;
202
+        $this->_request_data['other_obj'] = & $other_obj;
203 203
         $this->_request_data['icon'] = midcom_helper_reflector::get_object_icon($other_obj);
204 204
 
205 205
         if (get_class($other_obj) != $link['class']) {
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -107,7 +107,8 @@  discard block
 block discarded – undo
107 107
             //TODO: check for duplicates ?
108 108
             try {
109 109
                 $result = ['other_obj' => midcom::get()->dbfactory->get_object_by_guid($link[$other . 'Guid'])];
110
-            } catch (midcom_error) {
110
+            }
111
+            catch (midcom_error) {
111 112
                 continue;
112 113
             }
113 114
             $result['link'] = [
@@ -378,7 +379,8 @@  discard block
 block discarded – undo
378 379
             if (!($this->_object instanceof org_openpsa_relatedto_dba)) {
379 380
                 $response['status'] = "method requires guid of a link object as an argument";
380 381
             }
381
-        } catch (midcom_error $e) {
382
+        }
383
+        catch (midcom_error $e) {
382 384
             $response['status'] = "error: " . $e->getMessage();
383 385
         }
384 386
 
@@ -399,7 +401,8 @@  discard block
 block discarded – undo
399 401
             $relation = new org_openpsa_relatedto_dba($guid);
400 402
             $result = $relation->delete();
401 403
             $status = 'Last message: ' . midcom_connection::get_error_string();
402
-        } catch (midcom_error $e) {
404
+        }
405
+        catch (midcom_error $e) {
403 406
             $result = false;
404 407
             $status = "Object '{$guid}' could not be loaded, error:" . $e->getMessage();
405 408
         }
Please login to merge, or discard this patch.
src/midcom/datamanager/indexer/document.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
                     if (!empty($field->vars['value'])) {
172 172
                         //only index the first attachment for now
173 173
                         $attachment = array_shift($field->vars['value']);
174
-                        if (   !$attachment instanceof \midcom_db_attachment
174
+                        if (!$attachment instanceof \midcom_db_attachment
175 175
                             && !empty($attachment['object'])) {
176 176
                             //This is the form edit case
177 177
                             //@todo: In create case, nothing is found currently
Please login to merge, or discard this patch.
lib/org/openpsa/directmarketing/importer/csv.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,11 +55,11 @@
 block discarded – undo
55 55
         foreach (array_filter($csv_line) as $field => $value) {
56 56
             // Process the row accordingly
57 57
             $field_matching = $this->_settings['fields'][$field];
58
-            if (   $field_matching
58
+            if ($field_matching
59 59
                 && str_contains($field_matching, ':')) {
60 60
                 [$schemadb, $schema_field] = explode(':', $field_matching);
61 61
 
62
-                if (   !array_key_exists($schemadb, $this->_schemadbs)
62
+                if (!array_key_exists($schemadb, $this->_schemadbs)
63 63
                     || !$this->_schemadbs[$schemadb]->get('default')->has_field($schema_field)) {
64 64
                     // Invalid matching, skip
65 65
                     continue;
Please login to merge, or discard this patch.
src/midcom/datamanager/helper/autocomplete.php 1 patch
Spacing   +4 added lines, -6 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
     private function apply_constraints(midcom_core_query $query, array $constraints)
84 84
     {
85 85
         foreach ($constraints as $key => $data) {
86
-            if (   !array_key_exists('value', $data)
86
+            if (!array_key_exists('value', $data)
87 87
                 || empty($data['field'])
88 88
                 || empty($data['op'])) {
89 89
                 debug_add("Constraint #{$key} is not correctly defined, skipping", MIDCOM_LOG_WARN);
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
     {
145 145
         $query = $this->request["term"];
146 146
         $wildcard_query = $query;
147
-        if (   isset($this->request['auto_wildcards'])
147
+        if (isset($this->request['auto_wildcards'])
148 148
             && !str_contains($query, '%')) {
149 149
             switch ($this->request['auto_wildcards']) {
150 150
                 case 'start':
@@ -252,9 +252,7 @@  discard block
 block discarded – undo
252 252
                 return $label;
253 253
             }
254 254
         }
255
-        return midcom_helper_reflector::get($object)->get_object_label($object) ?:
256
-            self::build_label($object, array_column($result_headers, 'name')) ?:
257
-            get_class($object) . ' #' . $object->id;
255
+        return midcom_helper_reflector::get($object)->get_object_label($object) ?: self::build_label($object, array_column($result_headers, 'name')) ?: get_class($object) . ' #' . $object->id;
258 256
     }
259 257
 
260 258
     private static function build_label($object, array $fields) : string
@@ -289,7 +287,7 @@  discard block
 block discarded – undo
289 287
             }
290 288
             return self::sanitize_label($value);
291 289
         }
292
-        if (   $field == 'username'
290
+        if ($field == 'username'
293 291
             && $object instanceof midcom_db_person) {
294 292
             $account = new midcom_core_account($object);
295 293
             return self::sanitize_label($account->get_username());
Please login to merge, or discard this patch.
src/midcom/dba/parameters.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
         if (   !$this->can_do('midgard:update')
205 205
             || !$this->can_do('midgard:parameters')) {
206 206
             debug_add("Failed to set parameters, midgard:update or midgard:parameters on " . static::class . " {$this->guid} not granted for the current user.",
207
-                  MIDCOM_LOG_ERROR);
207
+                    MIDCOM_LOG_ERROR);
208 208
             midcom_connection::set_error(MGD_ERR_ACCESS_DENIED);
209 209
             return false;
210 210
         }
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
         if (   !$this->can_do('midgard:update')
249 249
             || !$this->can_do('midgard:parameters')) {
250 250
             debug_add("Failed to delete parameters, midgard:update or midgard:parameters on " . static::class . " {$this->guid} not granted for the current user.",
251
-                  MIDCOM_LOG_ERROR);
251
+                    MIDCOM_LOG_ERROR);
252 252
             midcom_connection::set_error(MGD_ERR_ACCESS_DENIED);
253 253
             return false;
254 254
         }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
             return false;
202 202
         }
203 203
 
204
-        if (   !$this->can_do('midgard:update')
204
+        if (!$this->can_do('midgard:update')
205 205
             || !$this->can_do('midgard:parameters')) {
206 206
             debug_add("Failed to set parameters, midgard:update or midgard:parameters on " . static::class . " {$this->guid} not granted for the current user.",
207 207
                   MIDCOM_LOG_ERROR);
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
             return false;
246 246
         }
247 247
 
248
-        if (   !$this->can_do('midgard:update')
248
+        if (!$this->can_do('midgard:update')
249 249
             || !$this->can_do('midgard:parameters')) {
250 250
             debug_add("Failed to delete parameters, midgard:update or midgard:parameters on " . static::class . " {$this->guid} not granted for the current user.",
251 251
                   MIDCOM_LOG_ERROR);
Please login to merge, or discard this patch.