Passed
Push — master ( e4006a...0c4633 )
by Lars
21:40 queued 06:51
created
src/Intraface/XMLRPC/OnlinePayment/Server0002.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -182,12 +182,12 @@
 block discarded – undo
182 182
         }
183 183
 
184 184
         $data = array('contact_id' => $debtor->getContact()->getId(),
185
-                      'subject'    => $subject,
186
-                      'body'       => $body,
187
-                      'from_email' => $this->kernel->intranet->address->get('email'),
188
-                      'from_name'  => $this->kernel->intranet->address->get('name'),
189
-                      'type_id'    => 13, // onlinepayment
190
-                      'belong_to'  => $payment_id);
185
+                        'subject'    => $subject,
186
+                        'body'       => $body,
187
+                        'from_email' => $this->kernel->intranet->address->get('email'),
188
+                        'from_name'  => $this->kernel->intranet->address->get('name'),
189
+                        'type_id'    => 13, // onlinepayment
190
+                        'belong_to'  => $payment_id);
191 191
 
192 192
         if (!$email->save($data)) {
193 193
             throw new Exception('Could not save email to onlinepayment');
Please login to merge, or discard this patch.
src/Intraface/XMLRPC/OnlinePayment/Server0001.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -182,12 +182,12 @@
 block discarded – undo
182 182
         }
183 183
 
184 184
         $data = array('contact_id' => $debtor->getContact()->getId(),
185
-                      'subject'    => $subject,
186
-                      'body'       => $body,
187
-                      'from_email' => $this->kernel->intranet->address->get('email'),
188
-                      'from_name'  => $this->kernel->intranet->address->get('name'),
189
-                      'type_id'    => 13, // onlinepayment
190
-                      'belong_to'  => $payment_id);
185
+                        'subject'    => $subject,
186
+                        'body'       => $body,
187
+                        'from_email' => $this->kernel->intranet->address->get('email'),
188
+                        'from_name'  => $this->kernel->intranet->address->get('name'),
189
+                        'type_id'    => 13, // onlinepayment
190
+                        'belong_to'  => $payment_id);
191 191
 
192 192
         if (!$email->save($data)) {
193 193
             throw new Exception('Could not save email to onlinepayment');
Please login to merge, or discard this patch.
src/Intraface/XMLRPC/OnlinePayment/Server.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -182,12 +182,12 @@
 block discarded – undo
182 182
         }
183 183
 
184 184
         $data = array('contact_id' => $debtor->getContact()->getId(),
185
-                      'subject'    => $subject,
186
-                      'body'       => $body,
187
-                      'from_email' => $this->kernel->intranet->address->get('email'),
188
-                      'from_name'  => $this->kernel->intranet->address->get('name'),
189
-                      'type_id'    => 13, // onlinepayment
190
-                      'belong_to'  => $payment_id);
185
+                        'subject'    => $subject,
186
+                        'body'       => $body,
187
+                        'from_email' => $this->kernel->intranet->address->get('email'),
188
+                        'from_name'  => $this->kernel->intranet->address->get('name'),
189
+                        'type_id'    => 13, // onlinepayment
190
+                        'belong_to'  => $payment_id);
191 191
 
192 192
         if (!$email->save($data)) {
193 193
             throw new Exception('Could not save email to onlinepayment');
Please login to merge, or discard this patch.
tests/unit/Webshop/BasketTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -214,7 +214,7 @@
 block discarded – undo
214 214
 
215 215
         $this->assertTrue($basket->removeEvaluationProducts());
216 216
 
217
-         $this->assertEquals(count($basket->getItems()), 0);
217
+            $this->assertEquals(count($basket->getItems()), 0);
218 218
     }
219 219
 
220 220
     function testSaveCustomerEan()
Please login to merge, or discard this patch.