Completed
Push — master ( 9d10c2...bf46e5 )
by Lars
05:14
created
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.
cron/bounceanalyze.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 require 'common.php';
3 3
 
4 4
 $mail = new Zend_Mail_Storage_Imap(array('host'     => 'xxx',
5
-                                         'user'     => 'xxx',
6
-                                         'password' => 'xxx'));
5
+                                            'user'     => 'xxx',
6
+                                            'password' => 'xxx'));
7 7
 
8 8
 $analyzer = new Intraface_modules_newsletter_BounceAnalyzer;
9 9
 
Please login to merge, or discard this patch.