mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 15:13:29 +01:00
33 lines
780 B
PHP
33 lines
780 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Invoice Ninja (https://invoiceninja.com).
|
||
|
*
|
||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
*
|
||
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
*
|
||
|
* @license https://www.elastic.co/licensing/elastic-license
|
||
|
*/
|
||
|
|
||
|
namespace App\Factory;
|
||
|
|
||
|
use App\Models\Scheduler;
|
||
|
|
||
|
class SchedulerFactory
|
||
|
{
|
||
|
public static function create($company_id, $user_id) :Scheduler
|
||
|
{
|
||
|
$scheduler = new Scheduler;
|
||
|
|
||
|
$scheduler->name = '';
|
||
|
$scheduler->company_id = $company_id;
|
||
|
$scheduler->user_id = $user_id;
|
||
|
$scheduler->parameters = [];
|
||
|
$scheduler->is_paused = false;
|
||
|
$scheduler->is_deleted = false;
|
||
|
$scheduler->template = '';
|
||
|
|
||
|
return $scheduler;
|
||
|
}
|
||
|
}
|