Passed
Push — master ( 33989f...4d3c0d )
by Andreas
23:55
created
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.
lib/org/openpsa/invoices/handler/invoice/view.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
 
108 108
             // sending per email enabled in billing data?
109 109
             $billing_data = org_openpsa_invoices_billing_data_dba::get_by_object($this->invoice);
110
-            if (    !$this->invoice->sent
110
+            if (!$this->invoice->sent
111 111
                  && intval($billing_data->sendingoption) == 2) {
112 112
                 $buttons[] = $this->build_button('send_by_mail', 'paper-plane');
113 113
             }
Please login to merge, or discard this patch.
lib/org/openpsa/invoices/handler/invoice/crud.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -153,8 +153,8 @@
 block discarded – undo
153 153
         $schema->get_field('paid')['hidden'] = empty($this->invoice->paid);
154 154
 
155 155
         $contact = $this->invoice->customerContact ? $this->invoice->customerContact : $this->contact_id;
156
-        $customer_field =& $schema->get_field('customer');
157
-        $contact_field =& $schema->get_field('customerContact');
156
+        $customer_field = & $schema->get_field('customer');
157
+        $contact_field = & $schema->get_field('customerContact');
158 158
 
159 159
         if (!empty($contact)) {
160 160
             $customer_field['type_config']['options'] = $this->get_customers_for_contact($contact);
Please login to merge, or discard this patch.
src/midcom/datamanager/extension/type/imageType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
             ]
47 47
         ]);
48 48
 
49
-        $resolver->setNormalizer('constraints', function (Options $options, $value) {
49
+        $resolver->setNormalizer('constraints', function(Options $options, $value) {
50 50
             if ($options['required']) {
51 51
                 return [new constraint(['config' => $options['type_config']])];
52 52
             }
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 
79 79
         $builder->add('delete', CheckboxType::class, ['attr' => [
80 80
             "class" => "midcom_datamanager_photo_checkbox"
81
-        ], "required" => false ]);
81
+        ], "required" => false]);
82 82
         $builder->add('identifier', HiddenType::class);
83 83
     }
84 84
 
Please login to merge, or discard this patch.
lib/org/openpsa/invoices/status.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     {
83 83
         $entries = array_merge($this->get_status_entries(), $this->get_journal_entries());
84 84
 
85
-        usort($entries, function ($a, $b) {
85
+        usort($entries, function($a, $b) {
86 86
             if ($a['timestamp'] == $b['timestamp']) {
87 87
                 return $b['order'] <=> $a['order'];
88 88
             }
@@ -116,8 +116,8 @@  discard block
 block discarded – undo
116 116
                 'order' => 3
117 117
             ];
118 118
         }
119
-        if (   $this->invoice->due
120
-            && (   (   $this->invoice->due < time()
119
+        if ($this->invoice->due
120
+            && (($this->invoice->due < time()
121 121
                     && $this->invoice->paid == 0)
122 122
                 || $this->invoice->due < $this->invoice->paid)) {
123 123
             $entries[] = [
Please login to merge, or discard this patch.