1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/PaymentDrivers/StripeConnectPaymentDriver.php

27 lines
662 B
PHP
Raw Normal View History

2021-04-12 12:11:08 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2021-04-12 12:11:08 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2021-04-12 12:11:08 +02:00
*/
namespace App\PaymentDrivers;
2021-05-11 13:19:44 +02:00
use App\Models\Client;
2021-05-11 13:04:32 +02:00
use App\Models\CompanyGateway;
2021-04-12 12:11:08 +02:00
2021-04-20 13:30:52 +02:00
class StripeConnectPaymentDriver extends StripePaymentDriver
2021-04-12 12:11:08 +02:00
{
2021-04-20 13:30:52 +02:00
public function __construct(CompanyGateway $company_gateway, Client $client = null, $invitation = false)
2021-04-12 12:11:08 +02:00
{
2021-04-20 13:30:52 +02:00
parent::__construct($company_gateway, $client, $invitation);
2021-04-12 12:11:08 +02:00
2021-04-20 13:30:52 +02:00
$this->stripe_connect = true;
2021-04-12 12:11:08 +02:00
}
}