File tree 4 files changed +9
-3
lines changed
4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ First time using Mercado Pago? Create your [Mercado Pago account](https://www.me
21
21
2 . Install PHP SDK for MercadoPago running in command line:
22
22
23
23
```
24
- composer require "mercadopago/dx-php:3.0.3 "
24
+ composer require "mercadopago/dx-php:3.0.4 "
25
25
```
26
26
27
27
> You can also run _ composer require "mercadopago/dx-php:2.6.2"_ for PHP7.1 or _ composer require "mercadopago/dx-php:1.12.6"_ for PHP5.6.
Original file line number Diff line number Diff line change 10
10
class MercadoPagoConfig
11
11
{
12
12
/** @var string Mercado Pago SDK version. */
13
- public static string $ CURRENT_VERSION = "3.0.3 " ;
13
+ public static string $ CURRENT_VERSION = "3.0.4 " ;
14
14
15
15
/** @var string Mercado Pago Base URL */
16
16
public static string $ BASE_URL = "https://api.mercadopago.com " ;
Original file line number Diff line number Diff line change @@ -9,4 +9,7 @@ class Payer
9
9
10
10
/** Payer nickname. */
11
11
public ?string $ nickname ;
12
+
13
+ /** Payer email. */
14
+ public ?string $ email ;
12
15
}
Original file line number Diff line number Diff line change @@ -22,9 +22,12 @@ class Payment
22
22
/** Payment status. */
23
23
public ?string $ status ;
24
24
25
- /** Gives more detailed information on the current state or rejection cause . */
25
+ /** @deprecated deprecated since SDK version 3.0.4 . */
26
26
public ?string $ status_details ;
27
27
28
+ /** Gives more detailed information on the current state or rejection cause. */
29
+ public ?string $ status_detail ;
30
+
28
31
/** Operation type. */
29
32
public ?string $ operation_type ;
30
33
You can’t perform that action at this time.
0 commit comments