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\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
|
|
|
|
{
|
|
|
|
|
|
|
|
$scheduler->fill($data);
|
|
|
|
|
|
|
|
$scheduler->save();
|
|
|
|
|
|
|
|
return $scheduler;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|