コード例 #1
0
ファイル: UIAssetMerger.php プロジェクト: bossrabbit/piwik
 /**
  * @return boolean
  */
 private function shouldGenerate()
 {
     if (!$this->mergedAsset->exists()) {
         return true;
     }
     return !$this->isFileUpToDate();
 }
コード例 #2
0
 /**
  * @return boolean
  */
 private function shouldGenerate()
 {
     if (!$this->mergedAsset->exists()) {
         return true;
     }
     if ($this->shouldCompareExistingVersion()) {
         return !$this->isFileUpToDate();
     }
     return false;
 }