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