/home/techb158/immovalet.com/vendor/laravel/cashier/src/Exceptions
NameSizeModeActions
CustomerAlreadyCreated.php4360644editdlrm
IncompletePayment.php19520644editdlrm
InvalidCustomer.php4400644editdlrm
InvalidCustomerBalanceTransaction.php6470644editdlrm
InvalidInvoice.php5290644editdlrm
InvalidPaymentMethod.php6120644editdlrm
SubscriptionUpdateFailure.php13830644editdlrm
Edit: /home/techb158/immovalet.com/vendor/laravel/cashier/src/Exceptions/IncompletePayment.php (1952B)
payment = $payment; } /** * Create a new IncompletePayment instance with a `payment_action_required` type. * * @param \Laravel\Cashier\Payment $payment * @return static */ public static function paymentMethodRequired(Payment $payment) { return new static( $payment, 'The payment attempt failed because of an invalid payment method.' ); } /** * Create a new IncompletePayment instance with a `requires_action` type. * * @param \Laravel\Cashier\Payment $payment * @return static */ public static function requiresAction(Payment $payment) { return new static( $payment, 'The payment attempt failed because additional action is required before it can be completed.' ); } /** * Create a new IncompletePayment instance with a `requires_confirmation` type. * * @param \Laravel\Cashier\Payment $payment * @return static */ public static function requiresConfirmation(Payment $payment) { return new static( $payment, 'The payment attempt failed because it needs to be confirmed before it can be completed.' ); } }