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

File "WebhookListCommand.php"

Full Path: /var/www/laravel_filter/vendor/luigel/laravel-paymongo/src/Commands/WebhookListCommand.php
File size: 654 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Luigel\Paymongo\Commands;

use Illuminate\Console\Command;
use Luigel\Paymongo\Traits\HasWebhooksTable;

class WebhookListCommand extends Command
{
    use HasWebhooksTable;

    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'paymongo:list-webhooks';

    /**
     * The console command description.
     *
     * @var string|null
     */
    protected $description = 'List all the webhooks from Paymongo.';

    /**
     * Execute the console command.
     *
     * @return int
     */
    public function handle()
    {
        $this->displayWebhooks();
    }
}