Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | protected function schedule(Schedule $schedule) |
||
25 | { |
||
26 | $schedule->command('colligator:harvest-oaipmh samling42 --daily') |
||
27 | ->dailyAt('02:00'); |
||
28 | |||
29 | // Bring subject heading usage counts up-to-date |
||
30 | $schedule->command('colligator:reindex') |
||
31 | ->weekly()->sundays()->at('04:00'); |
||
32 | |||
33 | // Check new documents for xisbn |
||
34 | $schedule->command('colligator:harvest-xisbn') |
||
35 | ->weekly()->saturdays()->at('04:00'); |
||
36 | } |
||
37 | |||
50 |