1 | <?php |
||
22 | abstract class ConfigHandler extends Application |
||
23 | { |
||
24 | /** |
||
25 | * Path to CaptainHook config file |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $configFile; |
||
30 | |||
31 | /** |
||
32 | * Set the configuration file to use. |
||
33 | * |
||
34 | * @param string $config |
||
35 | */ |
||
36 | 3 | public function setConfigFile(string $config) |
|
40 | |||
41 | /** |
||
42 | * Get the configuration file to use. |
||
43 | * |
||
44 | * @return string |
||
45 | */ |
||
46 | 2 | public function getConfigFile() : string |
|
53 | } |
||
54 |