2019-10-29 03:55:26 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-10-29 03:55:26 +01:00
|
|
|
*
|
|
|
|
* @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-29 03:55:26 +01:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Factory;
|
|
|
|
|
|
|
|
use App\Models\TaxRate;
|
|
|
|
|
|
|
|
class TaxRateFactory
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
public static function create($company_id, $user_id) :TaxRate
|
|
|
|
{
|
|
|
|
$tax_rate = new TaxRate;
|
2019-10-29 03:55:26 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
$tax_rate->name = '';
|
|
|
|
$tax_rate->rate = '';
|
|
|
|
$tax_rate->company_id = $company_id;
|
|
|
|
$tax_rate->user_id = $user_id;
|
2019-10-29 03:55:26 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
return $tax_rate;
|
|
|
|
}
|
|
|
|
}
|