Remove useless NewInstance

Bugfix: BodyStructure->SearchCharset return value
This commit is contained in:
djmaze 2020-05-08 11:49:18 +02:00
parent 82e560bc53
commit 693e0f4c10
61 changed files with 802 additions and 1345 deletions

View file

@ -27,17 +27,12 @@ class CacheClient
*/
private $sCacheIndex;
private function __construct()
function __construct()
{
$this->oDriver = null;
$this->sCacheIndex = '';
}
public static function NewInstance() : self
{
return new self();
}
public function Set(string $sKey, string $sValue) : bool
{
return $this->oDriver ? $this->oDriver->Set($sKey.$this->sCacheIndex, $sValue) : false;