invoiceninja/app/Repositories/SchedulerRepository.php
2023-05-18 09:26:57 +10:00

44 lines
1.0 KiB
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Repositories;
use App\Models\Scheduler;
class SchedulerRepository extends BaseRepository
{
/**
* Saves the scheduler.
*
* @param array $data The data
* @param \App\Models\Scheduler $scheduler The scheduler
*
* @return \App\Models\Scheduler
*/
public function save(array $data, Scheduler $scheduler): Scheduler
{
nlog($data);
$scheduler->fill($data);
$scheduler->save();
nlog($scheduler->withoutRelations()->toArray());
/** 18-5-2023 set client specific send times. */
$scheduler->calculateNextRun();
nlog($scheduler->withoutRelations()->toArray());
return $scheduler->fresh();
}
}