You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace domain\_;
-
- use common\components\MailerService;
-
- abstract class AbstractNotifier extends AbstractService implements NotifierInterface
- {
- protected MailerService $mailer;
-
- public function loadDependencies(): void
- {
- $this->mailer = \Yii::$app->mailerService;
- }
- }
|