Example #1
0
 /**
  * Clear config cache
  *
  * @return boolean
  */
 public static function clearConfigCache()
 {
     try {
         return ApplicationFileSystem::deleteFiles(ApplicationService::getConfigCachePath());
     } catch (Exception $e) {
         ApplicationErrorLogger::log($e);
     }
     return false;
 }