예제 #1
0
파일: Tg.php 프로젝트: twhiston/tg
 private function makeDevPath()
 {
     if (!file_exists(Tg::devPath())) {
         mkdir(Tg::devPath());
     }
 }
예제 #2
0
파일: Tg.php 프로젝트: twhiston/tg
 private function getDevConfig()
 {
     if (file_exists(TgRobo::devLocation())) {
         return Yaml::parse(file_get_contents(TgRobo::devLocation()));
     }
     return [];
 }