1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Factory/GroupSettingFactory.php

33 lines
736 B
PHP
Raw Normal View History

2019-10-05 00:58:51 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-10-05 00:58:51 +02:00
*
* @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)
2019-10-05 00:58:51 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-10-05 00:58:51 +02:00
*/
namespace App\Factory;
2021-04-10 04:47:47 +02:00
use App\Models\Client;
2019-10-05 00:58:51 +02:00
use App\Models\GroupSetting;
class GroupSettingFactory
{
public static function create(int $company_id, int $user_id) :GroupSetting
{
2021-04-10 04:47:47 +02:00
$settings = new \stdClass;
$settings->entity = Client::class;
2019-10-05 00:58:51 +02:00
$gs = new GroupSetting;
$gs->name = '';
2019-10-05 23:24:46 +02:00
$gs->company_id = $company_id;
2019-10-05 00:58:51 +02:00
$gs->user_id = $user_id;
2021-04-10 04:47:47 +02:00
$gs->settings = $settings;
2019-10-05 00:58:51 +02:00
return $gs;
}
}