JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "PaymentIntent.php"
Full Path: /var/www/laravel_filter/Modules/PaymentGateway/vendor/luigel/laravel-paymongo/src/Models/PaymentIntent.php
File size: 430 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Luigel\Paymongo\Models;
use Luigel\Paymongo\Paymongo;
class PaymentIntent extends BaseModel
{
public function cancel(): BaseModel
{
return (new Paymongo)->paymentIntent()->cancel($this);
}
public function attach(string $paymentMethodId, string|null $returnUrl = null): BaseModel
{
return (new Paymongo)->paymentIntent()->attach($this, $paymentMethodId, $returnUrl);
}
}