2020-10-13 07:02:12 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-10-13 07:02:12 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-10-13 07:02:12 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Factory;
|
|
|
|
|
|
|
|
use App\Models\ExpenseCategory;
|
|
|
|
|
|
|
|
class ExpenseCategoryFactory
|
|
|
|
{
|
|
|
|
public static function create(int $company_id, int $user_id) :ExpenseCategory
|
|
|
|
{
|
|
|
|
$expense = new ExpenseCategory();
|
|
|
|
$expense->user_id = $user_id;
|
|
|
|
$expense->company_id = $company_id;
|
|
|
|
$expense->name = '';
|
2020-10-28 11:10:49 +01:00
|
|
|
$expense->is_deleted = false;
|
2021-07-11 02:16:27 +02:00
|
|
|
$expense->color = '';
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-10-13 07:02:12 +02:00
|
|
|
return $expense;
|
|
|
|
}
|
|
|
|
}
|