Passed
Push — master ( f0a80d...74d5c1 )
by Andreas
18:22
created
lib/midgard/admin/asgard/handler/object/attachments.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -98,13 +98,13 @@  discard block
 block discarded – undo
98 98
         }
99 99
 
100 100
         $mimetype = $request->request->get('midgard_admin_asgard_mimetype');
101
-        if (   !empty($mimetype)
101
+        if (!empty($mimetype)
102 102
             && $local_file->mimetype != $mimetype) {
103 103
             $local_file->mimetype = $mimetype;
104 104
             $needs_update = true;
105 105
         }
106 106
 
107
-        if (   $needs_update
107
+        if ($needs_update
108 108
             && !$local_file->update()) {
109 109
             return null;
110 110
         }
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
         $this->bind_view_to_object($this->_file);
235 235
 
236 236
         $filename = $this->_process_form($request);
237
-        if (   $filename
237
+        if ($filename
238 238
             && $filename != $data['filename']) {
239 239
             return $this->relocate_to_file($filename);
240 240
         }
Please login to merge, or discard this patch.
lib/org/openpsa/directmarketing/sender.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         $this->from = $from;
80 80
         $this->subject = $subject;
81 81
 
82
-        if (   $this->_message->orgOpenpsaObtype != org_openpsa_directmarketing_campaign_message_dba::EMAIL_TEXT
82
+        if ($this->_message->orgOpenpsaObtype != org_openpsa_directmarketing_campaign_message_dba::EMAIL_TEXT
83 83
             && $this->_message->orgOpenpsaObtype != org_openpsa_directmarketing_campaign_message_dba::EMAIL_HTML) {
84 84
             throw new midcom_error('unsupported message type');
85 85
         }
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
         $token .= midcom_helper_misc::random_string($this->token_size - 1, 'abcdefghijklmnopqrstuvwxyz0123456789');
224 224
 
225 225
         //If token is not free or (very, very unlikely) matches our dummy token, recurse.
226
-        if (   $token === 'dummy'
226
+        if ($token === 'dummy'
227 227
             || !org_openpsa_directmarketing_campaign_messagereceipt_dba::token_is_free($token)) {
228 228
             return $this->_create_token();
229 229
         }
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
             return null;
248 248
         }
249 249
         $type = $this->_backend->get_type();
250
-        if (   $person->get_parameter('org.openpsa.directmarketing', "send_all_denied")
250
+        if ($person->get_parameter('org.openpsa.directmarketing', "send_all_denied")
251 251
             || $person->get_parameter('org.openpsa.directmarketing', "send_{$type}_denied")) {
252 252
             debug_add("Sending {$type} messages to person {$person->rname} is denied, unsubscribing member (member #{$member->id})");
253 253
             $member->orgOpenpsaObtype = org_openpsa_directmarketing_campaign_member_dba::UNSUBSCRIBED;
Please login to merge, or discard this patch.
lib/midcom/helper/reflector/copy.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
         }
189 189
 
190 190
         // Override requested root object properties
191
-        if (   !empty($this->target->guid)
191
+        if (!empty($this->target->guid)
192 192
             && $target->guid === $this->target->guid) {
193 193
             foreach ($this->root_object_values as $name => $value) {
194 194
                 $target->$name = $value;
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
     {
242 242
         if ($this->$type) {
243 243
             $method = 'copy_' . $type;
244
-            if (   !$this->$method($source, $target)
244
+            if (!$this->$method($source, $target)
245 245
                 && $this->halt_on_errors) {
246 246
                 $this->errors[] = $this->_l10n->get('failed to copy ' . $type);
247 247
                 return false;
Please login to merge, or discard this patch.
src/midcom/dba/attachments.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
             return false;
58 58
         }
59 59
 
60
-        if (   !$this->can_do('midgard:update')
60
+        if (!$this->can_do('midgard:update')
61 61
             || !$this->can_do('midgard:attachments')) {
62 62
             debug_add("Failed to set parameters, midgard:update or midgard:attachments on the " . get_class($this) . " {$this->guid} not granted for the current user.",
63 63
             MIDCOM_LOG_ERROR);
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
             return null;
78 78
         }
79 79
 
80
-        if (   !$this->can_do('midgard:update')
80
+        if (!$this->can_do('midgard:update')
81 81
             || !$this->can_do('midgard:attachments')) {
82 82
             debug_add("Failed to set parameters, midgard:update or midgard:attachments on the " . get_class($this) . " {$this->guid} not granted for the current user.",
83 83
             MIDCOM_LOG_ERROR);
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
         $attachment->parentguid = $this->guid;
92 92
 
93 93
         if (!$attachment->create()) {
94
-            debug_add("Could not create the attachment '{$name}' for " . get_class($this) . " {$this->guid}: "  . midcom_connection::get_error_string(),
94
+            debug_add("Could not create the attachment '{$name}' for " . get_class($this) . " {$this->guid}: " . midcom_connection::get_error_string(),
95 95
             MIDCOM_LOG_INFO);
96 96
             return null;
97 97
         }
Please login to merge, or discard this patch.
src/midcom/dba/parameters.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
             return false;
207 207
         }
208 208
 
209
-        if (   !$this->can_do('midgard:update')
209
+        if (!$this->can_do('midgard:update')
210 210
             || !$this->can_do('midgard:parameters')) {
211 211
             debug_add("Failed to set parameters, midgard:update or midgard:parameters on the " . get_class($this) . " {$this->guid} not granted for the current user.",
212 212
                       MIDCOM_LOG_ERROR);
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
             return false;
255 255
         }
256 256
 
257
-        if (   !$this->can_do('midgard:update')
257
+        if (!$this->can_do('midgard:update')
258 258
             || !$this->can_do('midgard:parameters')) {
259 259
             debug_add("Failed to delete parameters, midgard:update or midgard:parameters on the " . get_class($this) . " {$this->guid} not granted for the current user.",
260 260
                       MIDCOM_LOG_ERROR);
Please login to merge, or discard this patch.
lib/midcom/core/collector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
                 if ($counter <= $this->_offset) {
116 116
                     continue;
117 117
                 }
118
-                if (   $this->_limit
118
+                if ($this->_limit
119 119
                     && $counter > ($this->_offset + $this->_limit)) {
120 120
                     break;
121 121
                 }
Please login to merge, or discard this patch.
lib/midcom/core/query.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
             $this->_user_id = midcom::get()->auth->acl->get_user_id();
141 141
         }
142 142
 
143
-        if (   $this->hide_invisible
143
+        if ($this->hide_invisible
144 144
             && !$this->_visibility_checks_added) {
145 145
             if (!midcom::get()->config->get('show_hidden_objects')) {
146 146
                 $this->add_constraint('metadata.hidden', '=', false);
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
         // Deal with empty arrays, which would produce invalid queries
201 201
         // This is done here to avoid repetitive code in callers, and because
202 202
         // it's easy enough to generalize: IN empty set => always false, NOT IN empty set => always true
203
-        if (   is_array($value)
203
+        if (is_array($value)
204 204
             && empty($value)) {
205 205
             if ($operator == 'NOT IN') {
206 206
                 return true;
Please login to merge, or discard this patch.
lib/midcom/core/dbaobject.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
             }
95 95
             $this->set_object($id);
96 96
         } else {
97
-            if (   is_int($id)
97
+            if (is_int($id)
98 98
                 && $id < 1) {
99 99
                 throw new midcom_error($id . ' is not a valid database ID');
100 100
             }
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
             }
109 109
 
110 110
             //Some useful information for performance tuning
111
-            if (   midcom::get()->config->get('log_level') >= MIDCOM_LOG_DEBUG
111
+            if (midcom::get()->config->get('log_level') >= MIDCOM_LOG_DEBUG
112 112
                 && $this->__object->guid) {
113 113
                 static $guids = [];
114 114
                 static $total = 0;
Please login to merge, or discard this patch.
lib/midcom/services/indexer/document.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -405,7 +405,7 @@
 block discarded – undo
405 405
     {
406 406
         // Complete fields
407 407
         $this->indexed = time();
408
-        if (   $this->author == ''
408
+        if ($this->author == ''
409 409
             && isset($this->creator->name)) {
410 410
             $this->author = $this->creator->name;
411 411
         }
Please login to merge, or discard this patch.