mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 07:47:30 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.2 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\Transformers;
 | |
| 
 | |
| use App\Models\Scheduler;
 | |
| use App\Utils\Traits\MakesHash;
 | |
| 
 | |
| class SchedulerTransformer extends EntityTransformer
 | |
| {
 | |
|     use MakesHash;
 | |
| 
 | |
|     public function transform(Scheduler $scheduler)
 | |
|     {
 | |
|         return [
 | |
|             'id' => $this->encodePrimaryKey($scheduler->id),
 | |
|             'name' => (string) $scheduler->name,
 | |
|             'frequency_id' => (string) $scheduler->frequency_id,
 | |
|             'next_run' => $scheduler->next_run_client->format('Y-m-d'),
 | |
|             'template' => (string) $scheduler->template,
 | |
|             'is_paused' => (bool) $scheduler->is_paused,
 | |
|             'parameters' => (array) $scheduler->parameters,
 | |
|             'is_deleted' => (bool) $scheduler->is_deleted,
 | |
|             'updated_at' => (int) $scheduler->updated_at,
 | |
|             'created_at' => (int) $scheduler->created_at,
 | |
|             'archived_at' => (int) $scheduler->deleted_at,
 | |
|             'remaining_cycles' => (int) $scheduler->remaining_cycles,
 | |
|         ];
 | |
|     }
 | |
| }
 |