handle = @fopen($file, 'a')) ) { throw new InvalidConfigException("Unable to append to log file: {$file}"); } } /** * @param $msg */ public function write($msg) { @fwrite($this->handle, $msg, 4096); } /** * */ public function __destruct() { @fclose($this->handle); } }