2022-05-25 00:06:42 +02:00
|
|
|
<?php
|
2022-05-25 23:26:38 +02:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2022-05-25 00:06:42 +02:00
|
|
|
|
|
|
|
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),
|
2022-06-21 11:57:17 +02:00
|
|
|
'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,
|
2022-05-26 04:29:57 +02:00
|
|
|
'archived_at' => (int) $scheduler->deleted_at,
|
2022-05-30 20:44:51 +02:00
|
|
|
'action_name' => (string) $scheduler->action_name,
|
|
|
|
'action_class' => (string) $scheduler->action_class,
|
2022-06-21 11:57:17 +02:00
|
|
|
'parameters'=> (array) $scheduler->parameters,
|
2022-05-25 00:06:42 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|