2023-01-13 02:43:38 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @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)
|
2023-01-13 02:43:38 +01:00
|
|
|
*
|
|
|
|
* @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 = '';
|
2023-01-17 10:48:10 +01:00
|
|
|
$scheduler->next_run = now()->format('Y-m-d');
|
|
|
|
$scheduler->next_run_client = now()->format('Y-m-d');
|
|
|
|
|
2023-01-13 02:43:38 +01:00
|
|
|
return $scheduler;
|
|
|
|
}
|
|
|
|
}
|