JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "Webhook.php"

Full Path: /var/www/laravel_filter/Modules/PaymentGateway/vendor/luigel/laravel-paymongo/src/Models/Webhook.php
File size: 523 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Luigel\Paymongo\Models;

use Luigel\Paymongo\Paymongo;

class Webhook extends BaseModel
{
    public const SOURCE_CHARGEABLE = 'source.chargeable';

    public function enable(): BaseModel
    {
        return (new Paymongo)->webhook()->enable($this);
    }

    public function disable(): BaseModel
    {
        return (new Paymongo)->webhook()->disable($this);
    }

    public function update(array $payload): BaseModel
    {
        return (new Paymongo)->webhook()->update($this, $payload);
    }
}