| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 50 | public function onFetchList(LoadEvent $event) |
||
| 51 | { |
||
| 52 | return [ |
||
| 53 | 'key' => self::EVENT_NAME, |
||
| 54 | 'options' => [ |
||
| 55 | 'days' => 'Amount of days that must have passed beyond the publishEndDate (default 80)', |
||
| 56 | 'limit' => 'Maximum amount of jobs to process.' |
||
| 57 | ], |
||
| 58 | 'description' => 'Purges all expired jobs older than a specified range.' |
||
| 59 | ]; |
||
| 60 | } |
||
| 61 | } |
||
| 62 |