Example #1
0
File: Tg.php Project: twhiston/tg
 private function makeDevPath()
 {
     if (!file_exists(Tg::devPath())) {
         mkdir(Tg::devPath());
     }
 }
Example #2
0
File: Tg.php Project: twhiston/tg
 private function getDevConfig()
 {
     if (file_exists(TgRobo::devLocation())) {
         return Yaml::parse(file_get_contents(TgRobo::devLocation()));
     }
     return [];
 }