| Total Complexity | 2 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | class SchedulerTaskWasExecutedEvent extends SchedulerTaskEvent |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @label Event/Scheduler/SchedulerTask:execution_done.marker.result |
||
| 28 | * @marker |
||
| 29 | * |
||
| 30 | * @var bool |
||
| 31 | */ |
||
| 32 | protected $result; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param AbstractTask $task |
||
| 36 | * @param bool $result |
||
| 37 | */ |
||
| 38 | public function run(AbstractTask $task, $result) |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return array |
||
| 48 | */ |
||
| 49 | public function getExampleProperties() |
||
| 57 |