Esempio n. 1
0
 public function setConfigFolder($path)
 {
     if (!$path) {
         //TODO
         throw new \Exception('Invalid path');
     }
     $rPath = realpath($path);
     if ($rPath && is_dir($rPath) && is_readable($rPath)) {
         $this->configFolder = $rPath;
         if (is_array($this->appConfig['namespaces'])) {
             \Frame\Loader::registerNamespaces($this->appConfig['namespaces']);
         }
     } else {
         //TODO
         throw new \Exception('Invalid Config folder path');
     }
 }