Skip to content
This repository was archived by the owner on Dec 6, 2019. It is now read-only.

Commit c5f9225

Browse files
committed
Corrige tipos nos blocos de documentação
1 parent e3c2b66 commit c5f9225

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/Purchases/Transactions/Transaction.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class Transaction
5252
private $details;
5353

5454
/**
55-
* @var PaymentDetails
55+
* @var Payment
5656
*/
5757
private $payment;
5858

@@ -73,7 +73,7 @@ class Transaction
7373

7474
/**
7575
* @param Details $details
76-
* @param PaymentDetails $payment
76+
* @param Payment $payment
7777
* @param int $type
7878
* @param ItemCollection $items
7979
* @param Shipping $shipping
@@ -109,15 +109,15 @@ public function getType()
109109
}
110110

111111
/**
112-
* @return PaymentDetails
112+
* @return Payment
113113
*/
114114
public function getPayment()
115115
{
116116
return $this->payment;
117117
}
118118

119119
/**
120-
* @return Collection
120+
* @return ItemCollection
121121
*/
122122
public function getItems()
123123
{

src/Requests/RequestBuilder.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,12 @@ public function setFinalDate(DateTime $finalDate);
7474
public function setMaxTotalAmount($maxTotalAmount);
7575

7676
/**
77-
* @param float $maxTotalAmount
77+
* @param float $amountPerPayment
7878
*
7979
* @return self
8080
*/
8181
public function setAmountPerPayment($amountPerPayment);
82+
8283
/**
8384
* @param float $maxAmountPerPayment
8485
*

0 commit comments

Comments
 (0)