@@ -51,7 +51,6 @@ discard block |
||
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
54 | - * @param string $zipCode |
|
55 | 54 | * @return CustomerAddress |
56 | 55 | */ |
57 | 56 | public function setAddressLine(string $addressLine): CustomerAddress |
@@ -61,7 +60,6 @@ discard block |
||
61 | 60 | } |
62 | 61 | |
63 | 62 | /** |
64 | - * @param string $zipCode |
|
65 | 63 | * @return CustomerAddress |
66 | 64 | */ |
67 | 65 | public function setBuildingNumber(string $buildingNumber): CustomerAddress |
@@ -71,7 +69,6 @@ discard block |
||
71 | 69 | } |
72 | 70 | |
73 | 71 | /** |
74 | - * @param string $zipCode |
|
75 | 72 | * @return CustomerAddress |
76 | 73 | */ |
77 | 74 | public function setComplement(string $complement): CustomerAddress |
@@ -81,7 +78,6 @@ discard block |
||
81 | 78 | } |
82 | 79 | |
83 | 80 | /** |
84 | - * @param string $zipCode |
|
85 | 81 | * @return CustomerAddress |
86 | 82 | */ |
87 | 83 | public function setNeighborhood(string $neighborhood): CustomerAddress |
@@ -91,7 +87,6 @@ discard block |
||
91 | 87 | } |
92 | 88 | |
93 | 89 | /** |
94 | - * @param string $zipCode |
|
95 | 90 | * @return CustomerAddress |
96 | 91 | */ |
97 | 92 | public function setCity(string $city): CustomerAddress |
@@ -101,7 +96,6 @@ discard block |
||
101 | 96 | } |
102 | 97 | |
103 | 98 | /** |
104 | - * @param string $zipCode |
|
105 | 99 | * @return CustomerAddress |
106 | 100 | */ |
107 | 101 | public function setState(string $state): CustomerAddress |
@@ -111,7 +105,6 @@ discard block |
||
111 | 105 | } |
112 | 106 | |
113 | 107 | /** |
114 | - * @param string $zipCode |
|
115 | 108 | * @return CustomerAddress |
116 | 109 | */ |
117 | 110 | public function setCountry(string $country): CustomerAddress |
@@ -343,7 +343,7 @@ discard block |
||
343 | 343 | /** |
344 | 344 | * @param string $endpoint |
345 | 345 | * @param array|string|null $query |
346 | - * @param null $correlation_id |
|
346 | + * @param null|string $correlation_id |
|
347 | 347 | * @return array|mixed |
348 | 348 | * @throws RequestException |
349 | 349 | */ |
@@ -412,7 +412,6 @@ discard block |
||
412 | 412 | * @param bool $asJson |
413 | 413 | * @param bool $attachment |
414 | 414 | * @param DocumentAnalysis $document |
415 | - * @param string $fieldName |
|
416 | 415 | * @return array|mixed |
417 | 416 | * @throws RequestException |
418 | 417 | */ |
@@ -6,14 +6,14 @@ |
||
6 | 6 | use Illuminate\Support\Facades\Http; |
7 | 7 | use Ramsey\Uuid\Uuid; |
8 | 8 | use TypeError; |
9 | +use WeDevBr\Bankly\Contracts\Pix\PixCashoutInterface; |
|
9 | 10 | use WeDevBr\Bankly\Inputs\Customer; |
10 | 11 | use WeDevBr\Bankly\Inputs\DocumentAnalysis; |
11 | 12 | use WeDevBr\Bankly\Support\Contracts\CustomerInterface; |
12 | 13 | use WeDevBr\Bankly\Support\Contracts\DocumentInterface; |
13 | 14 | use WeDevBr\Bankly\Types\Billet\DepositBillet; |
14 | -use WeDevBr\Bankly\Types\Pix\PixEntries; |
|
15 | 15 | use WeDevBr\Bankly\Types\Card\Card; |
16 | -use WeDevBr\Bankly\Contracts\Pix\PixCashoutInterface; |
|
16 | +use WeDevBr\Bankly\Types\Pix\PixEntries; |
|
17 | 17 | |
18 | 18 | /** |
19 | 19 | * Class Bankly |
@@ -21,7 +21,6 @@ |
||
21 | 21 | |
22 | 22 | /** |
23 | 23 | * AddressValidator constructor. |
24 | - * @param Address $bankAccount |
|
25 | 24 | */ |
26 | 25 | public function __construct(Address $address) |
27 | 26 | { |