2019-10-05 00:58:51 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-10-05 00:58:51 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. 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
|
|
|
|
{
|
2024-01-14 05:05:00 +01:00
|
|
|
public static function create(int $company_id, int $user_id): GroupSetting
|
2019-12-30 22:59:12 +01:00
|
|
|
{
|
2024-01-14 05:05:00 +01:00
|
|
|
$settings = new \stdClass();
|
2022-06-21 11:57:17 +02:00
|
|
|
$settings->entity = Client::class;
|
2021-04-10 04:47:47 +02:00
|
|
|
|
2024-01-14 05:05:00 +01:00
|
|
|
$gs = new GroupSetting();
|
2019-10-05 00:58:51 +02:00
|
|
|
$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;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-10-05 00:58:51 +02:00
|
|
|
return $gs;
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|