@@ -12,7 +12,11 @@ class Config
protected function import()
{
- $config = include($this->file());
+ $file = $this->file();
+ if (!is_file($file)) {
+ $this->create();
+ }
+ $config = include($file);
return $config;
}