protected function compileStore($file, $str) { if (!is_dir($dir = dirname($file))) { @mkdir($dir, 0777, true); } if (!$this->devTemplate) { $str = Minify::PHP($str); } return file_put_contents($file, $str, LOCK_EX); }