/** * @access protected * * @param mixed $fWriteCallback * @param mixed $fClearCallback */ protected function __construct($fWriteCallback, $fClearCallback) { parent::__construct(); $this->fWriteCallback = \is_callable($fWriteCallback) ? $fWriteCallback : null; $this->fClearCallback = \is_callable($fClearCallback) ? $fClearCallback : null; }
/** * @access protected * * @param string $sNewLine = "\r\n" * @param bool $bHtmlEncodeSpecialChars = false */ protected function __construct($sNewLine = "\r\n", $bHtmlEncodeSpecialChars = false) { parent::__construct(); $this->sNewLine = $sNewLine; $this->bHtmlEncodeSpecialChars = $bHtmlEncodeSpecialChars; }
/** * @access protected * * @param string $sLoggerFileName * @param string $sCrLf = "\r\n" */ protected function __construct($sLoggerFileName, $sCrLf = "\r\n") { parent::__construct(); $this->sLoggerFileName = $sLoggerFileName; $this->sCrLf = $sCrLf; }
/** * @access protected * * @param string $sLoggerFileName * @param string $sNewLine = "\r\n" */ protected function __construct($sLoggerFileName, $sNewLine = "\r\n") { parent::__construct(); $this->sLoggerFileName = $sLoggerFileName; $this->sNewLine = $sNewLine; }