Merge pull request #2340 from totten/master-cache-codegen
[civicrm-core.git] / CRM / Core / CodeGen / ITask.php
1 <?php
2
3 /**
4 * Implemented by CG tasks
5 */
6 interface CRM_Core_CodeGen_ITask {
7 /**
8 * Make configuration object available to the task.
9 *
10 * @param $config is currently the CRM_Core_CodeGen_Main object.
11 */
12 function setConfig($config);
13
14 /**
15 * Perform the task.
16 */
17 function run();
18 }