mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
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\Transformers;
|
|
|
|
use App\Models\Scheduler;
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
class TaskSchedulerTransformer extends EntityTransformer
|
|
{
|
|
use MakesHash;
|
|
|
|
|
|
public function transform(Scheduler $scheduler)
|
|
{
|
|
return [
|
|
'id' => $this->encodePrimaryKey($scheduler->id),
|
|
'is_deleted' => (bool)$scheduler->is_deleted,
|
|
'paused' => (bool)$scheduler->paused,
|
|
'repeat_every' => (string)$scheduler->repeat_every,
|
|
'start_from' => (int)$scheduler->start_from,
|
|
'scheduled_run' => (int)$scheduler->scheduled_run,
|
|
'updated_at' => (int)$scheduler->updated_at,
|
|
'created_at' => (int)$scheduler->created_at,
|
|
'archived_at' => (int) $scheduler->deleted_at,
|
|
'action_name' => (string) $scheduler->action_name,
|
|
'action_class' => (string) $scheduler->action_class,
|
|
'parameters'=> (array)$scheduler->parameters,
|
|
];
|
|
}
|
|
|
|
}
|