Skip to content

Commit

Permalink
Merge pull request #469 from mercadopago/feature/adjust-mapper
Browse files Browse the repository at this point in the history
Fix use mapper
  • Loading branch information
rhames07 authored Sep 29, 2023
2 parents 1193934 + 00dbc8b commit ab5062a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/MercadoPago/Resources/Customer.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class Customer extends MPResource
{
/** Class mapper. */
use mapper;
use Mapper;

/** Id of the customer. */
public ?string $id;
Expand Down
2 changes: 1 addition & 1 deletion src/MercadoPago/Resources/Customer/Cardholder.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class Cardholder
{
/** Class mapper. */
use mapper;
use Mapper;

/** Name of cardholder. */
public ?string $name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class CustomerCardListResult
{
/** Class mapper. */
use mapper;
use Mapper;

/** Id of the card. */
public ?string $id;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class CustomerSearchResult
{
/** Class mapper. */
use mapper;
use Mapper;

/** Id of the customer. */
public ?string $id;
Expand Down
2 changes: 1 addition & 1 deletion src/MercadoPago/Resources/CustomerCard.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class CustomerCard extends MPResource
{
/** Class mapper. */
use mapper;
use Mapper;

/** Id of the card. */
public ?string $id;
Expand Down

0 comments on commit ab5062a

Please sign in to comment.