Passed
Push — master ( f0a80d...74d5c1 )
by Andreas
18:22
created
src/midcom/datamanager/extension/type/autocompleteType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     public function configureOptions(OptionsResolver $resolver)
35 35
     {
36 36
         $resolver->setDefault('error_bubbling', false);
37
-        $resolver->setNormalizer('widget_config', function (Options $options, $value) {
37
+        $resolver->setNormalizer('widget_config', function(Options $options, $value) {
38 38
             $widget_defaults = [
39 39
                 'creation_mode_enabled' => false,
40 40
                 'class' => null,
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
             return helper::normalize($widget_defaults, $value);
68 68
         });
69
-        $resolver->setNormalizer('type_config', function (Options $options, $value) {
69
+        $resolver->setNormalizer('type_config', function(Options $options, $value) {
70 70
             $type_defaults = [
71 71
                 'options' => [],
72 72
                 'method' => 'GET',
Please login to merge, or discard this patch.
src/midcom/datamanager/extension/type/subformType.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
                 'max_count' => 0
42 42
             ]
43 43
         ]);
44
-        $resolver->setNormalizer('constraints', function (Options $options, $value) {
44
+        $resolver->setNormalizer('constraints', function(Options $options, $value) {
45 45
             $validation = [];
46 46
             if ($options['type_config']['max_count'] > 0) {
47 47
                 $validation['max'] = $options['type_config']['max_count'];
@@ -54,13 +54,13 @@  discard block
 block discarded – undo
54 54
             }
55 55
             return $validation;
56 56
         });
57
-        $resolver->setNormalizer('entry_options', function (Options $options, $value) {
57
+        $resolver->setNormalizer('entry_options', function(Options $options, $value) {
58 58
             return array_replace([
59 59
                 'required' => false, //@todo no idea why this is necessary
60 60
                 'widget_config' => $options['widget_config']
61 61
             ], (array) $value);
62 62
         });
63
-        $resolver->setNormalizer('widget_config', function (Options $options, $value) {
63
+        $resolver->setNormalizer('widget_config', function(Options $options, $value) {
64 64
             if (!array_key_exists('sortable', $value)) {
65 65
                 $value['sortable'] = false;
66 66
             }
Please login to merge, or discard this patch.
lib/org/openpsa/user/validator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         $result = $this->is_username_available($fields);
48 48
 
49 49
         $accounthelper = new org_openpsa_user_accounthelper();
50
-        if ($fields['password']['switch'] && !$accounthelper->check_password_strength($fields['password']['password'])){
50
+        if ($fields['password']['switch'] && !$accounthelper->check_password_strength($fields['password']['password'])) {
51 51
             $result = ['password' => midcom::get()->i18n->get_string('password weak', 'org.openpsa.user')];
52 52
         }
53 53
 
@@ -155,10 +155,10 @@  discard block
 block discarded – undo
155 155
         $user = new midcom_db_person($fields["person"]);
156 156
 
157 157
         $accounthelper = new org_openpsa_user_accounthelper($user);
158
-        if (!$accounthelper->check_password_reuse($fields['new_password'])){
158
+        if (!$accounthelper->check_password_reuse($fields['new_password'])) {
159 159
             $result['password'] = midcom::get()->i18n->get_string('password was already used', 'org.openpsa.user');
160 160
         }
161
-        if (!$accounthelper->check_password_strength($fields['new_password'])){
161
+        if (!$accounthelper->check_password_strength($fields['new_password'])) {
162 162
             $result['password'] = midcom::get()->i18n->get_string('password weak', 'org.openpsa.user');
163 163
         }
164 164
         if (!empty($result)) {
Please login to merge, or discard this patch.
lib/org/openpsa/invoices/invoice/pdf.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         $filename = midcom_helper_misc::urlize($this->invoice->get_label()) . '.pdf';
89 89
 
90 90
         // tmp filename
91
-        $tmp_file = midcom::get()->config->get('midcom_tempdir') . "/". $filename;
91
+        $tmp_file = midcom::get()->config->get('midcom_tempdir') . "/" . $filename;
92 92
 
93 93
         // render pdf to tmp filename
94 94
         $pdf_builder->render($tmp_file);
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
             $attachment->update();
102 102
         } else {
103 103
             $attachment = $this->invoice->create_attachment($filename, $this->invoice->get_label(), "application/pdf");
104
-            if (   !$attachment
104
+            if (!$attachment
105 105
                 || !$this->invoice->set_parameter("midcom.helper.datamanager2.type.blobs", "guids_pdf_file", $attachment->guid . ":" . $attachment->guid)) {
106 106
                 throw new midcom_error("Failed to create invoice attachment for pdf: " . midcom_connection::get_error_string());
107 107
             }
Please login to merge, or discard this patch.
lib/midgard/admin/asgard/handler/undelete.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
             $object_label = $object->guid;
192 192
         }
193 193
         echo "{$prefix}    <td class=\"checkbox\"><input type=\"checkbox\" name=\"undelete[]\"{$disabled} value=\"{$object->guid}\" id=\"guid_{$object->guid}\" /></td>\n";
194
-        echo "{$prefix}    <td class=\"label\" style=\"padding-left: {$indent}px\"><a href=\"". $this->router->generate('object_deleted', ['guid' =>$object->guid]) . "\">{$icon} " . $object_label . "</a></td>\n";
194
+        echo "{$prefix}    <td class=\"label\" style=\"padding-left: {$indent}px\"><a href=\"" . $this->router->generate('object_deleted', ['guid' =>$object->guid]) . "\">{$icon} " . $object_label . "</a></td>\n";
195 195
         echo "{$prefix}    <td class=\"nowrap\">" . strftime('%x %X', strtotime($object->metadata->revised)) . "</td>\n";
196 196
 
197 197
         if (!empty($revisor->guid)) {
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
             $child_indent = $indent + 20;
208 208
             echo "{$prefix}<tbody class=\"children\">\n";
209 209
             foreach ($child_types as $type => $children) {
210
-                if (   count($children) < 10
210
+                if (count($children) < 10
211 211
                     || isset($_GET['show_children'][$object->guid][$type])) {
212 212
                         foreach ($children as $child) {
213 213
                             $this->show_type($child, $child_indent, "{$prefix}    ", false);
Please login to merge, or discard this patch.
lib/midcom/core/context.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
             return false;
154 154
         }
155 155
 
156
-        if (   $key === MIDCOM_CONTEXT_ROOTTOPIC
156
+        if ($key === MIDCOM_CONTEXT_ROOTTOPIC
157 157
             && $this->_data[$key] === null) {
158 158
             $this->_data[$key] = self::initialize_root_topic();
159 159
         }
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
      */
278 278
     public function set_custom_key($key, &$value)
279 279
     {
280
-        $this->_data[MIDCOM_CONTEXT_CUSTOMDATA][$key] =& $value;
280
+        $this->_data[MIDCOM_CONTEXT_CUSTOMDATA][$key] = & $value;
281 281
     }
282 282
 
283 283
     public function show()
Please login to merge, or discard this patch.
lib/net/nehmer/blog/handler/create.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 
40 40
         $schema_name = $args[0];
41 41
         $schemadb = $data['schemadb'];
42
-        if (   $this->_config->get('simple_name_handling')
42
+        if ($this->_config->get('simple_name_handling')
43 43
             && !midcom::get()->auth->can_user_do('midcom:urlname')) {
44 44
             foreach ($schemadb->all() as $schema) {
45 45
                 $schema->get_field('name')['readonly'] = true;
Please login to merge, or discard this patch.
lib/net/nehmer/blog/handler/admin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
         $this->article->require_do('midgard:update');
52 52
 
53 53
         $schemadb = $data['schemadb'];
54
-        if (   $this->_config->get('simple_name_handling')
54
+        if ($this->_config->get('simple_name_handling')
55 55
             && !midcom::get()->auth->can_user_do('midcom:urlname')) {
56 56
             foreach ($schemadb->all() as $schema) {
57 57
                 $schema->get_field('name')['readonly'] = true;
Please login to merge, or discard this patch.
lib/org/openpsa/sales/handler/edit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         $schemadb = schemadb::from_path($this->_config->get('schemadb_salesproject'));
62 62
 
63 63
         if (!empty($guid)) {
64
-            $field =& $schemadb->get('default')->get_field('customer');
64
+            $field = & $schemadb->get('default')->get_field('customer');
65 65
             try {
66 66
                 $customer = new org_openpsa_contacts_group_dba($guid);
67 67
                 $field['type_config']['options'] = [0 => '', $customer->id => $customer->official];
Please login to merge, or discard this patch.