コード例 #1
0
ファイル: css.php プロジェクト: nerdsrescueme/Core
 public function compress()
 {
     parent::compress();
     $this->contents = str_replace(array("\n", "   "), ' ', $this->contents);
     return $this;
 }
コード例 #2
0
ファイル: js.php プロジェクト: nerdsrescueme/Core
 public function compress()
 {
     parent::compress();
     $this->contents .= '/** COMPRESSED **/';
     return $this;
 }