$phpay
->charge($charge)
->setCustomer($customer)
->create();
$phpay
->charge()
->find($chargeId);
$phpay
->charge()
->getAll();
$phpay
->charge()
->setQueryParams($queryParams)
->getAll();
$phpay
->charge()
->update($chargeId, $data);
$phpay
->charge()
->destroy($chargeId);
$phpay
->charge()
->restore($chargeId);
$phpay
->charge()
->getStatus($chargeId);
$phpay
->charge()
->getDigitableLine($chargeId);
$qrcode = $phpay
->charge()
->getQrCodePix($chargeId);
$phpay
->charge()
->confirmReceipt($chargeId, [
'paymentDate' => date('Y-m-d'),
'value' => 100.00,
'notifyCustomer' => true,
]);
$phpay
->charge()
->undoConfirmReceipt($chargeId);