File "StripeGateway.php"

Full Path: /home/bettaeza/flyinsyria.com/Booking/Gateways/StripeGateway.php
File size: 612 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Modules\Booking\Gateways;

use Illuminate\Http\Request;
use Mockery\Exception;
use Modules\Booking\Events\BookingCreatedEvent;
use Modules\Booking\Models\Booking;
use Modules\Booking\Models\Payment;
use Omnipay\Omnipay;
use Omnipay\Stripe\Gateway;
use PHPUnit\Framework\Error\Warning;
use Validator;
use Omnipay\Common\Exception\InvalidCreditCardException;
use Illuminate\Support\Facades\Log;

use App\Helpers\Assets;

class StripeGateway extends StripeCheckoutGateway
{
    protected $id = 'stripe';

    public $name = 'Stripe Checkout';

    protected $gateway;


}