Completed
Push — master ( 415f7d...c1781c )
by
unknown
11s
created
examples/marketplace/transparent_moip_account_flow.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,9 +56,9 @@
 block discarded – undo
56 56
             'Bairro', 'Sao Paulo', 'SP',
57 57
             '01234567', 8)
58 58
         ->addAddress('SHIPPING',
59
-                  'Rua de teste do SHIPPING', 123,
60
-                  'Bairro do SHIPPING', 'Sao Paulo', 'SP',
61
-                  '01234567', 8);
59
+                    'Rua de teste do SHIPPING', 123,
60
+                    'Bairro do SHIPPING', 'Sao Paulo', 'SP',
61
+                    '01234567', 8);
62 62
 
63 63
     // Creating an order and splitting payment using 'addReceiver' method
64 64
     $order = $moipMerchant->orders()->setOwnId(uniqid())
Please login to merge, or discard this patch.
examples/marketplace/multiorder_and_multipayment.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,9 +26,9 @@
 block discarded – undo
26 26
             'Bairro', 'Sao Paulo', 'SP',
27 27
             '01234567', 8)
28 28
         ->addAddress('SHIPPING',
29
-                  'Rua de teste do SHIPPING', 123,
30
-                  'Bairro do SHIPPING', 'Sao Paulo', 'SP',
31
-                  '01234567', 8);
29
+                    'Rua de teste do SHIPPING', 123,
30
+                    'Bairro do SHIPPING', 'Sao Paulo', 'SP',
31
+                    '01234567', 8);
32 32
 
33 33
     // Creating an multiorder and setting receiver for each order with `addReceiver` method
34 34
     $order = $moip->orders()->setOwnId(uniqid())
Please login to merge, or discard this patch.
examples/ecommerce/simple_creditcard_payment.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@
 block discarded – undo
36 36
             'Bairro', 'Sao Paulo', 'SP',
37 37
             '01234567', 8)
38 38
         ->addAddress('SHIPPING',
39
-                  'Rua de teste do SHIPPING', 123,
40
-                  'Bairro do SHIPPING', 'Sao Paulo', 'SP',
41
-                  '01234567', 8)
39
+                    'Rua de teste do SHIPPING', 123,
40
+                    'Bairro do SHIPPING', 'Sao Paulo', 'SP',
41
+                    '01234567', 8)
42 42
         ->create();
43 43
 
44 44
     // Creating an order
Please login to merge, or discard this patch.
examples/ecommerce/simple_boleto_payment.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@
 block discarded – undo
36 36
             'Bairro', 'Sao Paulo', 'SP',
37 37
             '01234567', 8)
38 38
         ->addAddress('SHIPPING',
39
-                  'Rua de teste do SHIPPING', 123,
40
-                  'Bairro do SHIPPING', 'Sao Paulo', 'SP',
41
-                  '01234567', 8)
39
+                    'Rua de teste do SHIPPING', 123,
40
+                    'Bairro do SHIPPING', 'Sao Paulo', 'SP',
41
+                    '01234567', 8)
42 42
         ->create();
43 43
 
44 44
     // Creating an order
Please login to merge, or discard this patch.