mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 16:37:02 +03:00
Remove useless NewInstance
Bugfix: BodyStructure->SearchCharset return value
This commit is contained in:
parent
82e560bc53
commit
693e0f4c10
61 changed files with 802 additions and 1345 deletions
|
|
@ -23,7 +23,7 @@ class File extends \MailSo\Log\Driver
|
|||
*/
|
||||
private $sLoggerFileName;
|
||||
|
||||
protected function __construct(string $sLoggerFileName, string $sNewLine = "\r\n")
|
||||
function __construct(string $sLoggerFileName, string $sNewLine = "\r\n")
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
|
|
@ -36,11 +36,6 @@ class File extends \MailSo\Log\Driver
|
|||
$this->sLoggerFileName = $sLoggerFileName;
|
||||
}
|
||||
|
||||
public static function NewInstance(string $sLoggerFileName, string $sNewLine = "\r\n") : \MailSo\Log\Drivers\File
|
||||
{
|
||||
return new self($sLoggerFileName, $sNewLine);
|
||||
}
|
||||
|
||||
protected function writeImplementation($mDesc) : bool
|
||||
{
|
||||
return $this->writeToLogFile($mDesc);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue