final class scheduled_task_dto extends abstract_dto

internal  
 

Data Transfer Object for scheduled tasks.

Represents a configured and persistent scheduled task.

Methods

array
jsonSerialize()

Default implementation to serialize to JSON using the array representation.

__construct(string $classname, string $component, int|null $lastruntime, int $nextruntime, bool $disabled, string $minute, string $hour, string $day, string $month, string $dayofweek, bool $customised, int $faildelay)

No description

array
to_array()

Convert DTO to associative array.

to_object()

Convert DTO to stdClass.

Details

in abstract_dto at line 38
array jsonSerialize()

Default implementation to serialize to JSON using the array representation.

Return Value

array

at line 32
__construct(string $classname, string $component, int|null $lastruntime, int $nextruntime, bool $disabled, string $minute, string $hour, string $day, string $month, string $dayofweek, bool $customised, int $faildelay)

No description

Parameters

string $classname
string $component
int|null $lastruntime
int $nextruntime
bool $disabled
string $minute
string $hour
string $day
string $month
string $dayofweek
bool $customised
int $faildelay

at line 64
array to_array()

Convert DTO to associative array.

Return Value

array

at line 78
stdClass to_object()

Convert DTO to stdClass.

Return Value

stdClass