示例#1
0
 /**
  * @expectedException Flintstone\Exception
  */
 public function testConfigInvalidCache()
 {
     $config = new Config();
     $config->setCache(new self());
 }
示例#2
0
 /**
  * Get the path to the database file.
  *
  * @return string
  */
 public function getPath()
 {
     return $this->config->getDir() . $this->getName() . $this->config->getExt();
 }