Passed
Push — master ( 2b3ca5...94f3d7 )
by Andreas
09:16
created
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 2 patches
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.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -110,7 +110,8 @@  discard block
 block discarded – undo
110 110
         try {
111 111
             $this->process_classes($rules['classes'], $rules['type']);
112 112
             return true;
113
-        } catch (midcom_error $e) {
113
+        }
114
+        catch (midcom_error $e) {
114 115
             $e->log();
115 116
             return false;
116 117
         }
@@ -225,7 +226,8 @@  discard block
 block discarded – undo
225 226
             $guid = $mc_parameter->get_subkey($parameter_key, 'parentguid');
226 227
             try {
227 228
                 $parent = midcom::get()->dbfactory->get_object_by_guid($guid);
228
-            } catch (midcom_error $e) {
229
+            }
230
+            catch (midcom_error $e) {
229 231
                 $e->log();
230 232
                 continue;
231 233
             }
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
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
             $this->_user_id = midcom::get()->auth->acl->get_user_id();
103 103
         }
104 104
 
105
-        if (   $this->hide_invisible
105
+        if ($this->hide_invisible
106 106
             && !$this->_visibility_checks_added) {
107 107
             if (!midcom::get()->config->get('show_hidden_objects')) {
108 108
                 $this->add_constraint('metadata.hidden', '=', false);
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
         // Deal with empty arrays, which would produce invalid queries
169 169
         // This is done here to avoid repetitive code in callers, and because
170 170
         // it's easy enough to generalize: IN empty set => always false, NOT IN empty set => always true
171
-        if (   is_array($value)
171
+        if (is_array($value)
172 172
             && empty($value)) {
173 173
             if ($operator == 'NOT IN') {
174 174
                 return;
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/midcom/helper/reflector/nameresolver.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function get_object_name(string $name_property = null) : ?string
33 33
     {
34 34
         $name_property ??= midcom_helper_reflector::get_name_property($this->_object);
35
-        if (    empty($name_property)
35
+        if (empty($name_property)
36 36
             || !midcom_helper_reflector::get($this->_object)->property_exists($name_property)) {
37 37
             // Could not resolve valid property
38 38
             return null;
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 
125 125
             $qb->add_constraint($child_name_property, '=', $name);
126 126
             if ($qb->count()) {
127
-                debug_add("Name clash in sibling class {$schema_type} for " . get_class($this->_object) . " #{$this->_object->id} (path '" . midcom_helper_reflector_tree::resolve_path($this->_object, '/') . "')" );
127
+                debug_add("Name clash in sibling class {$schema_type} for " . get_class($this->_object) . " #{$this->_object->id} (path '" . midcom_helper_reflector_tree::resolve_path($this->_object, '/') . "')");
128 128
                 return false;
129 129
             }
130 130
         }
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
         } while (!$this->name_is_unique());
200 200
 
201 201
         // Get a copy of the current, usable name
202
-        $ret = (string)$this->_object->{$name_prop};
202
+        $ret = (string) $this->_object->{$name_prop};
203 203
         // Restore the original name
204 204
         $this->_object->{$name_prop} = $original_name;
205 205
         return $ret;
Please login to merge, or discard this patch.
src/midcom/datamanager/extension/type/codemirrorType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function configureOptions(OptionsResolver $resolver)
26 26
     {
27
-        $map_attr = function (Options $options, $value) {
27
+        $map_attr = function(Options $options, $value) {
28 28
             $value ??= [];
29 29
             $value['class'] = $options['widget_config']['enabled'] ? 'codemirror ' . $options['widget_config']['language'] : 'longtext';
30 30
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
             ]
45 45
         ]);
46 46
 
47
-        $resolver->setNormalizer('constraints', function (Options $options, $value) {
47
+        $resolver->setNormalizer('constraints', function(Options $options, $value) {
48 48
             if ($options['dm2_type'] == 'php') {
49 49
                 $value[] = new php;
50 50
             }
Please login to merge, or discard this patch.
src/midcom/datamanager/extension/type/toolbarType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
                 $operation = $button->getConfig()->getOption('operation');
67 67
                 $storage = $view->parent->vars['value'];
68 68
 
69
-                if (   $operation == controller::SAVE
69
+                if ($operation == controller::SAVE
70 70
                     && $storage instanceof dbacontainer
71 71
                     && empty($storage->get_value()->id)) {
72 72
                     $label = 'create';
Please login to merge, or discard this patch.
lib/net/nemein/rss/fetch.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
             $etag = trim($parser->data['headers']['etag']);
82 82
 
83 83
             $feed_etag = $this->_feed->get_parameter('net.nemein.rss', 'etag');
84
-            if (   !empty($feed_etag)
84
+            if (!empty($feed_etag)
85 85
                 && $feed_etag == $etag) {
86 86
                 // Feed hasn't changed, skip updating
87 87
                 debug_add("Feed {$this->_feed->url} has not changed since " . date('c', $this->_feed->latestfetch), MIDCOM_LOG_WARN);
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         $guid = $item->get_id();
151 151
         $title = $item->get_title();
152 152
 
153
-        if (   (   empty($title)
153
+        if ((empty($title)
154 154
                 || trim($title) == '...')
155 155
             && empty($guid)) {
156 156
             // Something wrong with this entry, skip it
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
         }
213 213
 
214 214
         if ($article->id) {
215
-            if (   $this->apply_values($article, $values, $meta_values)
215
+            if ($this->apply_values($article, $values, $meta_values)
216 216
                 && !$article->update()) {
217 217
                 return null;
218 218
             }
@@ -241,14 +241,14 @@  discard block
 block discarded – undo
241 241
     private function find_author(net_nemein_rss_parser_item $item) : midcom_db_person
242 242
     {
243 243
         // Try to figure out item author
244
-        if (   $this->_feed->forceauthor
244
+        if ($this->_feed->forceauthor
245 245
             && $this->_feed->defaultauthor) {
246 246
             // Feed has a "default author" set, use it
247 247
             return new midcom_db_person($this->_feed->defaultauthor);
248 248
         }
249 249
         $author = $this->match_item_author($item);
250 250
         $fallback_person_id = 1;
251
-        if (   !$author
251
+        if (!$author
252 252
             || $author->id == $fallback_person_id) {
253 253
             if ($this->_feed->defaultauthor) {
254 254
                 // Feed has a "default author" set, use it
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
             }
414 414
         }
415 415
 
416
-        if (   !empty($author_info['username'])
416
+        if (!empty($author_info['username'])
417 417
             && $person = midcom::get()->auth->get_user_by_name($author_info['username'])) {
418 418
             return $person->get_storage();
419 419
         }
Please login to merge, or discard this patch.
lib/midcom/config/main.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
         // show_unapproved_objects). Disabled by default. Unsafe to Link Prefetching!
364 364
         'metadata_approval' => false,
365 365
         'metadata_scheduling' => false,
366
-        'metadata_lock_timeout' => 60,    // Time in minutes
366
+        'metadata_lock_timeout' => 60, // Time in minutes
367 367
 
368 368
         // Set the datamanager schema used by the Metadata Service
369 369
         'metadata_schema' => 'file:/midcom/config/metadata_default.inc',
@@ -439,12 +439,12 @@  discard block
 block discarded – undo
439 439
             return $default;
440 440
         }
441 441
 
442
-        if (   $key === 'auth_type'
442
+        if ($key === 'auth_type'
443 443
             && !in_array($this->_merged_config[$key], ['Plaintext', 'Legacy', 'SHA256'])) {
444 444
             throw new midcom_error('Unsupported authentication type');
445 445
         }
446 446
         // Check the midcom_config site prefix for absolute local urls
447
-        if (   $key === 'midcom_site_url'
447
+        if ($key === 'midcom_site_url'
448 448
             && str_starts_with($this->_merged_config[$key], '/')) {
449 449
             $this->_merged_config[$key] = midcom::get()->get_page_prefix() . substr($this->_merged_config[$key], 1);
450 450
         }
Please login to merge, or discard this patch.