Completed
Pull Request — master (#238)
by
unknown
02:09
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.
src/Resource/Account.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -358,10 +358,10 @@
 block discarded – undo
358 358
      *
359 359
      * @return stdClass
360 360
      */
361
-     public function getPasswordLink()
362
-         {
363
-             return $this->getIfSet('_links')->setPassword->href;
364
-         }
361
+        public function getPasswordLink()
362
+            {
363
+                return $this->getIfSet('_links')->setPassword->href;
364
+            }
365 365
 
366 366
     /**
367 367
      * Get account type.
Please login to merge, or discard this patch.
src/Resource/Customer.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -49,16 +49,16 @@
 block discarded – undo
49 49
      * Initialize a new instance.
50 50
      */
51 51
 
52
-     /**
53
-      *  Document type PJ.
54
-      *
55
-      * @const string
56
-      */
57
-     const TAX_DOCUMENT_PJ = 'CNPJ';
58
-
59
-     /**
60
-      * Initialize a new instance.
61
-      */
52
+        /**
53
+         *  Document type PJ.
54
+         *
55
+         * @const string
56
+         */
57
+        const TAX_DOCUMENT_PJ = 'CNPJ';
58
+
59
+        /**
60
+         * Initialize a new instance.
61
+         */
62 62
 
63 63
     public function initialize()
64 64
     {
Please login to merge, or discard this patch.