mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
30 lines
712 B
PHP
30 lines
712 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
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 = '';
|
|
$expense->is_deleted = false;
|
|
$expense->color = '';
|
|
|
|
return $expense;
|
|
}
|
|
}
|