Example #1
0
 public function isCompiledValid(File $aSourceFile, File $aCompiledFile)
 {
     if ($this->bForceCompile) {
         return false;
     }
     return $aCompiledFile->exists() and $aSourceFile->modifyTime() <= $aCompiledFile->modifyTime();
 }