mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
18 lines
303 B
PHP
18 lines
303 B
PHP
<?php
|
|
|
|
|
|
namespace App\Factory;
|
|
|
|
|
|
use App\Models\BillingSubscription;
|
|
|
|
class BillingSubscriptionFactory
|
|
{
|
|
public static function create(int $company_id, int $user_id): BillingSubscription
|
|
{
|
|
$billing_subscription = new BillingSubscription();
|
|
|
|
return $billing_subscription;
|
|
}
|
|
}
|