Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
95 | private function save() |
||
96 | { |
||
97 | $workflowDir = getenv('alfred_workflow_data'); |
||
98 | $configFile = $workflowDir . '/config.json'; |
||
99 | |||
100 | if (file_exists($workflowDir) === false) { |
||
101 | mkdir($workflowDir); |
||
102 | } |
||
103 | |||
104 | file_put_contents($configFile, json_encode($this->config, JSON_PRETTY_PRINT)); |
||
105 | } |
||
106 | } |
||
107 |