Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Lima committed Nov 18, 2019
1 parent 93bbd50 commit 3818f0b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Core/Bank/Banking.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Banking extends Resource
* Withdraw cash to the given bank account.
*
* @param string $transactionId Transaction ID to cancel.
* @return boolean
* @return array
*/
public function accounts()
{
Expand All @@ -33,7 +33,7 @@ public function accounts()
* Withdraw cash to the given bank account.
*
* @param string $transactionId Transaction ID to cancel.
* @return boolean
* @return array
*/
public function withdraw(int $bank_account_id)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Core/Payment/Billet.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Billet extends Resource
* Create a new billet.
*
* @param array $data Billet data.
* @return void
* @return array
*/
public function create(array $data = [])
{
Expand All @@ -36,7 +36,7 @@ public function create(array $data = [])
* Cancel a billet with the given transaction ID.
*
* @param string $transactionId Transaction ID to cancel.
* @return void
* @return array
*/
public function cancel(string $transaction_id)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Payment/Notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Notification extends Resource
/**
* Get notification response.
*
* @return void
* @return array
*/
public function response(string $notificationId, string $transactionId)
{
Expand Down

0 comments on commit 3818f0b

Please sign in to comment.