| Total Complexity | 5 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class DeleteStaticCacheJob extends Job |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var int |
||
| 12 | * @config |
||
| 13 | */ |
||
| 14 | private static $chunk_size = 2000; |
||
|
|
|||
| 15 | |||
| 16 | /** |
||
| 17 | * @return string |
||
| 18 | */ |
||
| 19 | public function getTitle() |
||
| 20 | { |
||
| 21 | return 'Remove a set of static pages from the cache'; |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Do some processing yourself! |
||
| 26 | */ |
||
| 27 | public function process() |
||
| 42 | } |
||
| 43 | } |
||
| 44 |