コード例 #1
0
 /**
  * Determinate running mode
  *
  * @return string
  */
 private function getMode()
 {
     if (file_exists(Compiled::getFilePath())) {
         return Compiled::MODE;
     }
     return Developer::MODE;
 }
コード例 #2
0
 public function testGetMode()
 {
     $this->assertEquals(Compiled::MODE, $this->_compiled->getMode());
 }