2019-10-03 05:21:24 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-10-03 05:21:24 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Factory;
|
|
|
|
|
|
|
|
use App\Models\CompanyGateway;
|
|
|
|
|
|
|
|
class CompanyGatewayFactory
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
public static function create(int $company_id, int $user_id) :CompanyGateway
|
|
|
|
{
|
2019-10-03 05:21:24 +02:00
|
|
|
$company_gateway = new CompanyGateway;
|
|
|
|
$company_gateway->company_id = $company_id;
|
|
|
|
$company_gateway->user_id = $user_id;
|
2019-10-03 07:42:58 +02:00
|
|
|
|
2019-10-03 05:21:24 +02:00
|
|
|
return $company_gateway;
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|