1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Factory/ExpenseCategoryFactory.php

30 lines
720 B
PHP
Raw Normal View History

2020-10-13 07:02:12 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. 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;
$expense->color = '';
2021-01-07 23:25:00 +01:00
2020-10-13 07:02:12 +02:00
return $expense;
}
}