| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class CleanupGeneratedPdfBuildTask extends BuildTask |
||
| 9 | { |
||
| 10 | private static $segment = 'CleanupGeneratedPdfBuildTask'; |
||
|
|
|||
| 11 | |||
| 12 | protected $title = 'Cleanup generated PDFs'; |
||
| 13 | |||
| 14 | protected $description = 'Removes generated PDFs on the site, forcing a regeneration of all exports to PDF ' |
||
| 15 | . 'when users go to download them. This is most useful when templates have been changed so users should ' |
||
| 16 | . 'receive a new copy'; |
||
| 17 | |||
| 18 | public function run($request) |
||
| 33 |