X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=framework%2Fmain%2Fclasses%2Fmailer%2Fclass_;h=f8180d9413a449eb2c0b6ba3b9ef3e867e2c9574;hp=b25be3f6b30bbbbc30c96b1c1d098b739dc5d456;hb=HEAD;hpb=a60894f1d6ef33613d2d0351075aa07aa257f304 diff --git a/framework/main/classes/mailer/class_ b/framework/main/classes/mailer/class_ index b25be3f6..55b566a3 100644 --- a/framework/main/classes/mailer/class_ +++ b/framework/main/classes/mailer/class_ @@ -1,17 +1,18 @@ * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2023 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -34,7 +35,7 @@ class ???Mailer extends BaseMailer implements DeliverableMail { * * @return void */ - protected function __construct () { + private function __construct () { // Call parent constructor parent::__construct(__CLASS__); } @@ -59,7 +60,7 @@ class ???Mailer extends BaseMailer implements DeliverableMail { * @todo 0% done */ public function deliverEmail() { - $this->partialStub("You have to implement this method."); + DebugMiddleware::getSelfInstance()->partialStub("You have to implement this method."); } /** @@ -69,7 +70,7 @@ class ???Mailer extends BaseMailer implements DeliverableMail { * @todo 0% done */ public function sendAdminNotification() { - $this->partialStub("You have to implement this method."); + DebugMiddleware::getSelfInstance()->partialStub("You have to implement this method."); } }