mirror of
https://github.com/elyby/accounts.git
synced 2024-11-30 02:32:26 +05:30
Merge branch 'develop' into forgot_password_captcha
# Conflicts: # api/models/authentication/ForgotPasswordForm.php
This commit is contained in:
commit
6abd92e715
@ -1,12 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* @var \common\models\Account $account
|
|
||||||
* @var string $key
|
|
||||||
*/
|
|
||||||
?>
|
|
||||||
|
|
||||||
This E-mail was specified as new for account <?= $account->username ?>. To confirm this E-mail, pass code below into form on site.
|
|
||||||
|
|
||||||
Code: <?= $key ?>
|
|
||||||
|
|
||||||
// P.S. yes, this is E-mail is not designed yet :)
|
|
@ -42,7 +42,7 @@ class FeedbackForm extends ApiForm {
|
|||||||
|
|
||||||
$account = $this->getAccount();
|
$account = $this->getAccount();
|
||||||
/** @var \yii\swiftmailer\Message $message */
|
/** @var \yii\swiftmailer\Message $message */
|
||||||
$message = $mailer->compose('@app/mails/feedback', [
|
$message = $mailer->compose('@common/emails/views/feedback', [
|
||||||
'model' => $this,
|
'model' => $this,
|
||||||
'account' => $account,
|
'account' => $account,
|
||||||
]);
|
]);
|
||||||
|
@ -4,15 +4,14 @@ namespace api\models\authentication;
|
|||||||
use api\components\ReCaptcha\Validator as ReCaptchaValidator;
|
use api\components\ReCaptcha\Validator as ReCaptchaValidator;
|
||||||
use api\models\base\ApiForm;
|
use api\models\base\ApiForm;
|
||||||
use api\validators\TotpValidator;
|
use api\validators\TotpValidator;
|
||||||
|
use common\emails\EmailHelper;
|
||||||
use common\helpers\Error as E;
|
use common\helpers\Error as E;
|
||||||
use api\traits\AccountFinder;
|
use api\traits\AccountFinder;
|
||||||
use common\components\UserFriendlyRandomKey;
|
use common\components\UserFriendlyRandomKey;
|
||||||
use common\models\Account;
|
use common\models\Account;
|
||||||
use common\models\confirmations\ForgotPassword;
|
use common\models\confirmations\ForgotPassword;
|
||||||
use common\models\EmailActivation;
|
use common\models\EmailActivation;
|
||||||
use Yii;
|
|
||||||
use yii\base\ErrorException;
|
use yii\base\ErrorException;
|
||||||
use yii\base\InvalidConfigException;
|
|
||||||
|
|
||||||
class ForgotPasswordForm extends ApiForm {
|
class ForgotPasswordForm extends ApiForm {
|
||||||
use AccountFinder;
|
use AccountFinder;
|
||||||
@ -97,41 +96,11 @@ class ForgotPasswordForm extends ApiForm {
|
|||||||
throw new ErrorException('Cannot create email activation for forgot password form');
|
throw new ErrorException('Cannot create email activation for forgot password form');
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->sendMail($emailActivation);
|
EmailHelper::forgotPassword($emailActivation);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function sendMail(EmailActivation $emailActivation) {
|
|
||||||
/** @var \yii\swiftmailer\Mailer $mailer */
|
|
||||||
$mailer = Yii::$app->mailer;
|
|
||||||
$fromEmail = Yii::$app->params['fromEmail'];
|
|
||||||
if (!$fromEmail) {
|
|
||||||
throw new InvalidConfigException('Please specify fromEmail app in app params');
|
|
||||||
}
|
|
||||||
|
|
||||||
$account = $emailActivation->account;
|
|
||||||
$htmlBody = Yii::$app->emailRenderer->getTemplate('forgotPassword')
|
|
||||||
->setLocale($account->lang)
|
|
||||||
->setParams([
|
|
||||||
'username' => $account->username,
|
|
||||||
'code' => $emailActivation->key,
|
|
||||||
'link' => Yii::$app->request->getHostInfo() . '/recover-password/' . $emailActivation->key,
|
|
||||||
])
|
|
||||||
->render();
|
|
||||||
|
|
||||||
/** @var \yii\swiftmailer\Message $message */
|
|
||||||
$message = $mailer->compose()
|
|
||||||
->setHtmlBody($htmlBody)
|
|
||||||
->setTo([$account->email => $account->username])
|
|
||||||
->setFrom([$fromEmail => 'Ely.by Accounts'])
|
|
||||||
->setSubject('Ely.by Account forgot password');
|
|
||||||
|
|
||||||
if (!$message->send()) {
|
|
||||||
throw new ErrorException('Unable send email with activation code.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getLogin() {
|
public function getLogin() {
|
||||||
return $this->login;
|
return $this->login;
|
||||||
}
|
}
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
namespace api\models\authentication;
|
namespace api\models\authentication;
|
||||||
|
|
||||||
use api\components\ReCaptcha\Validator as ReCaptchaValidator;
|
use api\components\ReCaptcha\Validator as ReCaptchaValidator;
|
||||||
|
use common\emails\EmailHelper;
|
||||||
use api\models\base\ApiForm;
|
use api\models\base\ApiForm;
|
||||||
use common\helpers\Error as E;
|
use common\helpers\Error as E;
|
||||||
use common\components\UserFriendlyRandomKey;
|
use common\components\UserFriendlyRandomKey;
|
||||||
use common\models\Account;
|
use common\models\Account;
|
||||||
use common\models\confirmations\RegistrationConfirmation;
|
use common\models\confirmations\RegistrationConfirmation;
|
||||||
use common\models\EmailActivation;
|
|
||||||
use common\models\UsernameHistory;
|
use common\models\UsernameHistory;
|
||||||
use common\validators\EmailValidator;
|
use common\validators\EmailValidator;
|
||||||
use common\validators\LanguageValidator;
|
use common\validators\LanguageValidator;
|
||||||
@ -17,7 +17,6 @@ use Exception;
|
|||||||
use Ramsey\Uuid\Uuid;
|
use Ramsey\Uuid\Uuid;
|
||||||
use Yii;
|
use Yii;
|
||||||
use yii\base\ErrorException;
|
use yii\base\ErrorException;
|
||||||
use yii\base\InvalidConfigException;
|
|
||||||
use yii\helpers\ArrayHelper;
|
use yii\helpers\ArrayHelper;
|
||||||
use const common\LATEST_RULES_VERSION;
|
use const common\LATEST_RULES_VERSION;
|
||||||
|
|
||||||
@ -103,7 +102,7 @@ class RegistrationForm extends ApiForm {
|
|||||||
throw new ErrorException('Cannot save username history record');
|
throw new ErrorException('Cannot save username history record');
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->sendMail($emailActivation, $account);
|
EmailHelper::registration($emailActivation);
|
||||||
|
|
||||||
$transaction->commit();
|
$transaction->commit();
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
@ -114,37 +113,6 @@ class RegistrationForm extends ApiForm {
|
|||||||
return $account;
|
return $account;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: подумать, чтобы вынести этот метод в какую-то отдельную конструкцию, т.к. используется и внутри NewAccountActivationForm
|
|
||||||
public function sendMail(EmailActivation $emailActivation, Account $account) {
|
|
||||||
/** @var \yii\swiftmailer\Mailer $mailer */
|
|
||||||
$mailer = Yii::$app->mailer;
|
|
||||||
$fromEmail = Yii::$app->params['fromEmail'];
|
|
||||||
|
|
||||||
if (!$fromEmail) {
|
|
||||||
throw new InvalidConfigException('Please specify fromEmail app in app params');
|
|
||||||
}
|
|
||||||
|
|
||||||
$htmlBody = Yii::$app->emailRenderer->getTemplate('register')
|
|
||||||
->setLocale($account->lang)
|
|
||||||
->setParams([
|
|
||||||
'username' => $account->username,
|
|
||||||
'code' => $emailActivation->key,
|
|
||||||
'link' => Yii::$app->request->getHostInfo() . '/activation/' . $emailActivation->key,
|
|
||||||
])
|
|
||||||
->render();
|
|
||||||
|
|
||||||
/** @var \yii\swiftmailer\Message $message */
|
|
||||||
$message = $mailer->compose()
|
|
||||||
->setHtmlBody($htmlBody)
|
|
||||||
->setTo([$account->email => $account->username])
|
|
||||||
->setFrom([$fromEmail => 'Ely.by Accounts'])
|
|
||||||
->setSubject('Ely.by Account registration');
|
|
||||||
|
|
||||||
if (!$message->send()) {
|
|
||||||
throw new ErrorException('Unable send email with activation code.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Метод проверяет, можно ли занять указанный при регистрации ник или e-mail. Так случается,
|
* Метод проверяет, можно ли занять указанный при регистрации ник или e-mail. Так случается,
|
||||||
* что пользователи вводят неправильный e-mail или ник, после замечают это и пытаются вновь
|
* что пользователи вводят неправильный e-mail или ник, после замечают это и пытаются вновь
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
namespace api\models\authentication;
|
namespace api\models\authentication;
|
||||||
|
|
||||||
use api\components\ReCaptcha\Validator as ReCaptchaValidator;
|
use api\components\ReCaptcha\Validator as ReCaptchaValidator;
|
||||||
|
use common\emails\EmailHelper;
|
||||||
use api\models\base\ApiForm;
|
use api\models\base\ApiForm;
|
||||||
use common\helpers\Error as E;
|
use common\helpers\Error as E;
|
||||||
use common\components\UserFriendlyRandomKey;
|
use common\components\UserFriendlyRandomKey;
|
||||||
@ -72,8 +73,7 @@ class RepeatAccountActivationForm extends ApiForm {
|
|||||||
throw new ErrorException('Unable save email-activation model.');
|
throw new ErrorException('Unable save email-activation model.');
|
||||||
}
|
}
|
||||||
|
|
||||||
$regForm = new RegistrationForm();
|
EmailHelper::registration($activation);
|
||||||
$regForm->sendMail($activation, $account);
|
|
||||||
|
|
||||||
$transaction->commit();
|
$transaction->commit();
|
||||||
} catch (ErrorException $e) {
|
} catch (ErrorException $e) {
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace api\models\profile\ChangeEmail;
|
namespace api\models\profile\ChangeEmail;
|
||||||
|
|
||||||
|
use common\emails\EmailHelper;
|
||||||
use api\models\base\ApiForm;
|
use api\models\base\ApiForm;
|
||||||
use api\validators\PasswordRequiredValidator;
|
use api\validators\PasswordRequiredValidator;
|
||||||
use common\helpers\Error as E;
|
use common\helpers\Error as E;
|
||||||
@ -10,7 +11,6 @@ use common\models\EmailActivation;
|
|||||||
use Yii;
|
use Yii;
|
||||||
use yii\base\ErrorException;
|
use yii\base\ErrorException;
|
||||||
use yii\base\Exception;
|
use yii\base\Exception;
|
||||||
use yii\base\InvalidConfigException;
|
|
||||||
|
|
||||||
class InitStateForm extends ApiForm {
|
class InitStateForm extends ApiForm {
|
||||||
|
|
||||||
@ -55,7 +55,8 @@ class InitStateForm extends ApiForm {
|
|||||||
try {
|
try {
|
||||||
$this->removeOldCode();
|
$this->removeOldCode();
|
||||||
$activation = $this->createCode();
|
$activation = $this->createCode();
|
||||||
$this->sendCode($activation);
|
|
||||||
|
EmailHelper::changeEmailConfirmCurrent($activation);
|
||||||
|
|
||||||
$transaction->commit();
|
$transaction->commit();
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
@ -93,29 +94,6 @@ class InitStateForm extends ApiForm {
|
|||||||
$emailActivation->delete();
|
$emailActivation->delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function sendCode(EmailActivation $code) {
|
|
||||||
$mailer = Yii::$app->mailer;
|
|
||||||
$fromEmail = Yii::$app->params['fromEmail'];
|
|
||||||
if (!$fromEmail) {
|
|
||||||
throw new InvalidConfigException('Please specify fromEmail app in app params');
|
|
||||||
}
|
|
||||||
|
|
||||||
$acceptor = $code->account;
|
|
||||||
$message = $mailer->compose([
|
|
||||||
'html' => '@app/mails/current-email-confirmation-html',
|
|
||||||
'text' => '@app/mails/current-email-confirmation-text',
|
|
||||||
], [
|
|
||||||
'key' => $code->key,
|
|
||||||
])
|
|
||||||
->setTo([$acceptor->email => $acceptor->username])
|
|
||||||
->setFrom([$fromEmail => 'Ely.by Accounts'])
|
|
||||||
->setSubject('Ely.by Account change E-mail confirmation');
|
|
||||||
|
|
||||||
if (!$message->send()) {
|
|
||||||
throw new ErrorException('Unable send email with activation code.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Возвращает E-mail активацию, которая использовалась внутри процесса для перехода на следующий шаг.
|
* Возвращает E-mail активацию, которая использовалась внутри процесса для перехода на следующий шаг.
|
||||||
* Метод предназначен для проверки, не слишком ли часто отправляются письма о смене E-mail.
|
* Метод предназначен для проверки, не слишком ли часто отправляются письма о смене E-mail.
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace api\models\profile\ChangeEmail;
|
namespace api\models\profile\ChangeEmail;
|
||||||
|
|
||||||
|
use common\emails\EmailHelper;
|
||||||
use api\models\base\ApiForm;
|
use api\models\base\ApiForm;
|
||||||
use api\validators\EmailActivationKeyValidator;
|
use api\validators\EmailActivationKeyValidator;
|
||||||
use common\models\Account;
|
use common\models\Account;
|
||||||
@ -9,7 +10,6 @@ use common\models\EmailActivation;
|
|||||||
use common\validators\EmailValidator;
|
use common\validators\EmailValidator;
|
||||||
use Yii;
|
use Yii;
|
||||||
use yii\base\ErrorException;
|
use yii\base\ErrorException;
|
||||||
use yii\base\InvalidConfigException;
|
|
||||||
|
|
||||||
class NewEmailForm extends ApiForm {
|
class NewEmailForm extends ApiForm {
|
||||||
|
|
||||||
@ -45,7 +45,8 @@ class NewEmailForm extends ApiForm {
|
|||||||
$previousActivation->delete();
|
$previousActivation->delete();
|
||||||
|
|
||||||
$activation = $this->createCode();
|
$activation = $this->createCode();
|
||||||
$this->sendCode($activation);
|
|
||||||
|
EmailHelper::changeEmailConfirmNew($activation);
|
||||||
|
|
||||||
$transaction->commit();
|
$transaction->commit();
|
||||||
|
|
||||||
@ -67,32 +68,6 @@ class NewEmailForm extends ApiForm {
|
|||||||
return $emailActivation;
|
return $emailActivation;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function sendCode(EmailActivation $code) {
|
|
||||||
/** @var \yii\swiftmailer\Mailer $mailer */
|
|
||||||
$mailer = Yii::$app->mailer;
|
|
||||||
$fromEmail = Yii::$app->params['fromEmail'];
|
|
||||||
if (!$fromEmail) {
|
|
||||||
throw new InvalidConfigException('Please specify fromEmail app in app params');
|
|
||||||
}
|
|
||||||
|
|
||||||
$acceptor = $code->account;
|
|
||||||
/** @var \yii\swiftmailer\Message $message */
|
|
||||||
$message = $mailer->compose([
|
|
||||||
'html' => '@app/mails/new-email-confirmation-html',
|
|
||||||
'text' => '@app/mails/new-email-confirmation-text',
|
|
||||||
], [
|
|
||||||
'key' => $code->key,
|
|
||||||
'account' => $acceptor,
|
|
||||||
])
|
|
||||||
->setTo([$this->email => $acceptor->username])
|
|
||||||
->setFrom([$fromEmail => 'Ely.by Accounts'])
|
|
||||||
->setSubject('Ely.by Account new E-mail confirmation');
|
|
||||||
|
|
||||||
if (!$message->send()) {
|
|
||||||
throw new ErrorException('Unable send email with activation code.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public function __construct(Account $account, array $config = []) {
|
public function __construct(Account $account, array $config = []) {
|
||||||
$this->account = $account;
|
$this->account = $account;
|
||||||
parent::__construct($config);
|
parent::__construct($config);
|
||||||
|
56
common/emails/EmailHelper.php
Normal file
56
common/emails/EmailHelper.php
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
<?php
|
||||||
|
namespace common\emails;
|
||||||
|
|
||||||
|
use common\emails\templates\ChangeEmailConfirmCurrentEmail;
|
||||||
|
use common\emails\templates\ChangeEmailConfirmNewEmail;
|
||||||
|
use common\emails\templates\ForgotPasswordEmail;
|
||||||
|
use common\emails\templates\ForgotPasswordParams;
|
||||||
|
use common\emails\templates\RegistrationEmail;
|
||||||
|
use common\emails\templates\RegistrationEmailParams;
|
||||||
|
use common\models\Account;
|
||||||
|
use common\models\confirmations\CurrentEmailConfirmation;
|
||||||
|
use common\models\confirmations\ForgotPassword;
|
||||||
|
use common\models\confirmations\NewEmailConfirmation;
|
||||||
|
use common\models\confirmations\RegistrationConfirmation;
|
||||||
|
use Yii;
|
||||||
|
|
||||||
|
class EmailHelper {
|
||||||
|
|
||||||
|
public static function registration(RegistrationConfirmation $emailActivation): void {
|
||||||
|
$account = $emailActivation->account;
|
||||||
|
$locale = $account->lang;
|
||||||
|
$params = new RegistrationEmailParams(
|
||||||
|
$account->username,
|
||||||
|
$emailActivation->key,
|
||||||
|
Yii::$app->request->getHostInfo() . '/activation/' . $emailActivation->key
|
||||||
|
);
|
||||||
|
|
||||||
|
(new RegistrationEmail(self::buildTo($account), $locale, $params))->send();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function forgotPassword(ForgotPassword $emailActivation): void {
|
||||||
|
$account = $emailActivation->account;
|
||||||
|
$locale = $account->lang;
|
||||||
|
$params = new ForgotPasswordParams(
|
||||||
|
$account->username,
|
||||||
|
$emailActivation->key,
|
||||||
|
Yii::$app->request->getHostInfo() . '/recover-password/' . $emailActivation->key
|
||||||
|
);
|
||||||
|
|
||||||
|
(new ForgotPasswordEmail(self::buildTo($account), $locale, $params))->send();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function changeEmailConfirmCurrent(CurrentEmailConfirmation $emailActivation): void {
|
||||||
|
(new ChangeEmailConfirmCurrentEmail(self::buildTo($emailActivation->account), $emailActivation->key))->send();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function changeEmailConfirmNew(NewEmailConfirmation $emailActivation): void {
|
||||||
|
$account = $emailActivation->account;
|
||||||
|
(new ChangeEmailConfirmNewEmail(self::buildTo($account), $account->username, $emailActivation->key))->send();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function buildTo(Account $account): array {
|
||||||
|
return [$account->email => $account->username];
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
79
common/emails/Template.php
Normal file
79
common/emails/Template.php
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
<?php
|
||||||
|
namespace common\emails;
|
||||||
|
|
||||||
|
use common\emails\exceptions\CannotSendEmailException;
|
||||||
|
use Yii;
|
||||||
|
use yii\base\InvalidConfigException;
|
||||||
|
use yii\mail\MailerInterface;
|
||||||
|
use yii\mail\MessageInterface;
|
||||||
|
|
||||||
|
abstract class Template {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var \yii\swiftmailer\Mailer
|
||||||
|
*/
|
||||||
|
private $mailer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string|array
|
||||||
|
*/
|
||||||
|
private $to;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string|array $to получатель письма. Задаётся как Email или как массив [email => name]
|
||||||
|
*/
|
||||||
|
public function __construct($to) {
|
||||||
|
$this->mailer = Yii::$app->mailer;
|
||||||
|
$this->to = $to;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array|string
|
||||||
|
*/
|
||||||
|
public function getTo() {
|
||||||
|
return $this->to;
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract public function getSubject(): string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return array|string
|
||||||
|
* @throws InvalidConfigException
|
||||||
|
*/
|
||||||
|
public function getFrom() {
|
||||||
|
$fromEmail = Yii::$app->params['fromEmail'];
|
||||||
|
if (!$fromEmail) {
|
||||||
|
throw new InvalidConfigException('Please specify fromEmail app in app params');
|
||||||
|
}
|
||||||
|
|
||||||
|
return [$fromEmail => 'Ely.by Accounts'];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getParams(): array {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getMailer(): MailerInterface {
|
||||||
|
return $this->mailer;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function send(): void {
|
||||||
|
if (!$this->createMessage()->send()) {
|
||||||
|
throw new CannotSendEmailException('Unable send email.');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string|array
|
||||||
|
*/
|
||||||
|
abstract protected function getView();
|
||||||
|
|
||||||
|
protected function createMessage(): MessageInterface {
|
||||||
|
return $this->getMailer()
|
||||||
|
->compose($this->getView(), $this->getParams())
|
||||||
|
->setTo($this->getTo())
|
||||||
|
->setFrom($this->getFrom())
|
||||||
|
->setSubject($this->getSubject());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
66
common/emails/TemplateWithRenderer.php
Normal file
66
common/emails/TemplateWithRenderer.php
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
<?php
|
||||||
|
namespace common\emails;
|
||||||
|
|
||||||
|
use common\components\EmailRenderer;
|
||||||
|
use Yii;
|
||||||
|
use yii\mail\MessageInterface;
|
||||||
|
|
||||||
|
abstract class TemplateWithRenderer extends Template {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var EmailRenderer
|
||||||
|
*/
|
||||||
|
private $emailRenderer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
private $locale;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @inheritdoc
|
||||||
|
*/
|
||||||
|
public function __construct($to, string $locale) {
|
||||||
|
parent::__construct($to);
|
||||||
|
$this->emailRenderer = Yii::$app->emailRenderer;
|
||||||
|
$this->locale = $locale;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getLocale(): string {
|
||||||
|
return $this->locale;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getEmailRenderer(): EmailRenderer {
|
||||||
|
return $this->emailRenderer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Метод должен возвращать имя шаблона, который должен быть использован.
|
||||||
|
* Имена можно взять в репозитории elyby/email-renderer
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
abstract public function getTemplateName(): string;
|
||||||
|
|
||||||
|
protected final function getView() {
|
||||||
|
return $this->getTemplateName();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function createMessage(): MessageInterface {
|
||||||
|
return $this->getMailer()
|
||||||
|
->compose()
|
||||||
|
->setHtmlBody($this->render())
|
||||||
|
->setTo($this->getTo())
|
||||||
|
->setFrom($this->getFrom())
|
||||||
|
->setSubject($this->getSubject());
|
||||||
|
}
|
||||||
|
|
||||||
|
private function render(): string {
|
||||||
|
return $this->getEmailRenderer()
|
||||||
|
->getTemplate($this->getTemplateName())
|
||||||
|
->setLocale($this->getLocale())
|
||||||
|
->setParams($this->getParams())
|
||||||
|
->render();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
8
common/emails/exceptions/CannotSendEmailException.php
Normal file
8
common/emails/exceptions/CannotSendEmailException.php
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
namespace common\emails\exceptions;
|
||||||
|
|
||||||
|
use Exception;
|
||||||
|
|
||||||
|
class CannotSendEmailException extends Exception {
|
||||||
|
|
||||||
|
}
|
35
common/emails/templates/ChangeEmailConfirmCurrentEmail.php
Normal file
35
common/emails/templates/ChangeEmailConfirmCurrentEmail.php
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
namespace common\emails\templates;
|
||||||
|
|
||||||
|
use common\emails\Template;
|
||||||
|
|
||||||
|
class ChangeEmailConfirmCurrentEmail extends Template {
|
||||||
|
|
||||||
|
private $key;
|
||||||
|
|
||||||
|
public function __construct($to, string $key) {
|
||||||
|
parent::__construct($to);
|
||||||
|
$this->key = $key;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getSubject(): string {
|
||||||
|
return 'Ely.by Account change E-mail confirmation';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string|array
|
||||||
|
*/
|
||||||
|
protected function getView() {
|
||||||
|
return [
|
||||||
|
'html' => '@common/emails/views/current-email-confirmation-html',
|
||||||
|
'text' => '@common/emails/views/current-email-confirmation-text',
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getParams(): array {
|
||||||
|
return [
|
||||||
|
'key' => $this->key,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
39
common/emails/templates/ChangeEmailConfirmNewEmail.php
Normal file
39
common/emails/templates/ChangeEmailConfirmNewEmail.php
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
<?php
|
||||||
|
namespace common\emails\templates;
|
||||||
|
|
||||||
|
use common\emails\Template;
|
||||||
|
|
||||||
|
class ChangeEmailConfirmNewEmail extends Template {
|
||||||
|
|
||||||
|
private $username;
|
||||||
|
|
||||||
|
private $key;
|
||||||
|
|
||||||
|
public function __construct($to, string $username, string $key) {
|
||||||
|
parent::__construct($to);
|
||||||
|
$this->username = $username;
|
||||||
|
$this->key = $key;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getSubject(): string {
|
||||||
|
return 'Ely.by Account new E-mail confirmation';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string|array
|
||||||
|
*/
|
||||||
|
protected function getView() {
|
||||||
|
return [
|
||||||
|
'html' => '@common/emails/views/new-email-confirmation-html',
|
||||||
|
'text' => '@common/emails/views/new-email-confirmation-text',
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getParams(): array {
|
||||||
|
return [
|
||||||
|
'key' => $this->key,
|
||||||
|
'username' => $this->username,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
34
common/emails/templates/ForgotPasswordEmail.php
Normal file
34
common/emails/templates/ForgotPasswordEmail.php
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
namespace common\emails\templates;
|
||||||
|
|
||||||
|
use common\emails\TemplateWithRenderer;
|
||||||
|
|
||||||
|
class ForgotPasswordEmail extends TemplateWithRenderer {
|
||||||
|
|
||||||
|
private $params;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @inheritdoc
|
||||||
|
*/
|
||||||
|
public function __construct($to, string $locale, ForgotPasswordParams $params) {
|
||||||
|
TemplateWithRenderer::__construct($to, $locale);
|
||||||
|
$this->params = $params;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getSubject(): string {
|
||||||
|
return 'Ely.by Account forgot password';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getTemplateName(): string {
|
||||||
|
return 'forgotPassword';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getParams(): array {
|
||||||
|
return [
|
||||||
|
'username' => $this->params->getUsername(),
|
||||||
|
'code' => $this->params->getCode(),
|
||||||
|
'link' => $this->params->getLink(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
30
common/emails/templates/ForgotPasswordParams.php
Normal file
30
common/emails/templates/ForgotPasswordParams.php
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
namespace common\emails\templates;
|
||||||
|
|
||||||
|
class ForgotPasswordParams {
|
||||||
|
|
||||||
|
private $username;
|
||||||
|
|
||||||
|
private $code;
|
||||||
|
|
||||||
|
private $link;
|
||||||
|
|
||||||
|
public function __construct(string $username, string $code, string $link) {
|
||||||
|
$this->username = $username;
|
||||||
|
$this->code = $code;
|
||||||
|
$this->link = $code;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getUsername(): string {
|
||||||
|
return $this->username;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getCode(): string {
|
||||||
|
return $this->code;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getLink(): string {
|
||||||
|
return $this->link;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
34
common/emails/templates/RegistrationEmail.php
Normal file
34
common/emails/templates/RegistrationEmail.php
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
namespace common\emails\templates;
|
||||||
|
|
||||||
|
use common\emails\TemplateWithRenderer;
|
||||||
|
|
||||||
|
class RegistrationEmail extends TemplateWithRenderer {
|
||||||
|
|
||||||
|
private $params;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @inheritdoc
|
||||||
|
*/
|
||||||
|
public function __construct($to, string $locale, RegistrationEmailParams $params) {
|
||||||
|
TemplateWithRenderer::__construct($to, $locale);
|
||||||
|
$this->params = $params;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getSubject(): string {
|
||||||
|
return 'Ely.by Account registration';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getTemplateName(): string {
|
||||||
|
return 'register';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getParams(): array {
|
||||||
|
return [
|
||||||
|
'username' => $this->params->getUsername(),
|
||||||
|
'code' => $this->params->getCode(),
|
||||||
|
'link' => $this->params->getLink(),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
30
common/emails/templates/RegistrationEmailParams.php
Normal file
30
common/emails/templates/RegistrationEmailParams.php
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
namespace common\emails\templates;
|
||||||
|
|
||||||
|
class RegistrationEmailParams {
|
||||||
|
|
||||||
|
private $username;
|
||||||
|
|
||||||
|
private $code;
|
||||||
|
|
||||||
|
private $link;
|
||||||
|
|
||||||
|
public function __construct(string $username, string $code, string $link) {
|
||||||
|
$this->username = $username;
|
||||||
|
$this->code = $code;
|
||||||
|
$this->link = $code;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getUsername(): string {
|
||||||
|
return $this->username;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getCode(): string {
|
||||||
|
return $this->code;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getLink(): string {
|
||||||
|
return $this->link;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,12 +1,12 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* @var \common\models\Account $account
|
* @var string $username
|
||||||
* @var string $key
|
* @var string $key
|
||||||
*/
|
*/
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
This E-mail was specified as new for account <?= $account->username ?>. To confirm this E-mail, pass code
|
This E-mail was specified as new for account <?= $username ?>. To confirm this E-mail, pass code
|
||||||
below into form on site.
|
below into form on site.
|
||||||
</p>
|
</p>
|
||||||
<p>Code: <?= $key ?></p>
|
<p>Code: <?= $key ?></p>
|
12
common/emails/views/new-email-confirmation-text.php
Normal file
12
common/emails/views/new-email-confirmation-text.php
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @var string $username
|
||||||
|
* @var string $key
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
|
||||||
|
This E-mail was specified as new for account <?= $username ?>. To confirm this E-mail, pass code below into form on site.
|
||||||
|
|
||||||
|
Code: <?= $key ?>
|
||||||
|
|
||||||
|
// P.S. yes, this is E-mail is not designed yet :)
|
@ -40,7 +40,8 @@
|
|||||||
"codeception/codeception": "~2.2.4",
|
"codeception/codeception": "~2.2.4",
|
||||||
"codeception/specify": "*",
|
"codeception/specify": "*",
|
||||||
"codeception/verify": "*",
|
"codeception/verify": "*",
|
||||||
"phploc/phploc": "^3.0.1"
|
"phploc/phploc": "^3.0.1",
|
||||||
|
"mockery/mockery": "1.0.0-alpha1"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"process-timeout": 1800
|
"process-timeout": 1800
|
||||||
|
@ -4,6 +4,7 @@ modules:
|
|||||||
- Yii2:
|
- Yii2:
|
||||||
part: [orm, email, fixtures]
|
part: [orm, email, fixtures]
|
||||||
- tests\codeception\common\_support\amqp\Helper
|
- tests\codeception\common\_support\amqp\Helper
|
||||||
|
- tests\codeception\common\_support\Mockery
|
||||||
config:
|
config:
|
||||||
Yii2:
|
Yii2:
|
||||||
configFile: '../config/api/unit.php'
|
configFile: '../config/api/unit.php'
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace tests\codeception\api\unit;
|
namespace tests\codeception\api\unit;
|
||||||
|
|
||||||
|
use Mockery;
|
||||||
|
|
||||||
class TestCase extends \Codeception\Test\Unit {
|
class TestCase extends \Codeception\Test\Unit {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -19,4 +21,9 @@ class TestCase extends \Codeception\Test\Unit {
|
|||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function tearDown() {
|
||||||
|
parent::tearDown();
|
||||||
|
Mockery::close();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
31
tests/codeception/common/_support/Mockery.php
Normal file
31
tests/codeception/common/_support/Mockery.php
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
namespace tests\codeception\common\_support;
|
||||||
|
|
||||||
|
use Codeception\Module;
|
||||||
|
use Codeception\TestInterface;
|
||||||
|
|
||||||
|
class Mockery extends Module {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var bool Run mockery expectations after test or not
|
||||||
|
*/
|
||||||
|
private $assert_mocks = true;
|
||||||
|
|
||||||
|
public function _before(TestInterface $test) {
|
||||||
|
\Mockery::globalHelpers();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function _after(TestInterface $test) {
|
||||||
|
if ($this->assert_mocks) {
|
||||||
|
\Mockery::close();
|
||||||
|
} else {
|
||||||
|
\Mockery::getContainer()->mockery_close();
|
||||||
|
\Mockery::resetContainer();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function _failed(TestInterface $test, $fail) {
|
||||||
|
$this->assert_mocks = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -3,6 +3,7 @@ modules:
|
|||||||
enabled:
|
enabled:
|
||||||
- Yii2:
|
- Yii2:
|
||||||
part: [orm, email, fixtures]
|
part: [orm, email, fixtures]
|
||||||
|
- tests\codeception\common\_support\Mockery
|
||||||
config:
|
config:
|
||||||
Yii2:
|
Yii2:
|
||||||
configFile: '../config/common/unit.php'
|
configFile: '../config/common/unit.php'
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace tests\codeception\common\unit;
|
namespace tests\codeception\common\unit;
|
||||||
|
|
||||||
|
use Mockery;
|
||||||
|
|
||||||
class TestCase extends \Codeception\Test\Unit {
|
class TestCase extends \Codeception\Test\Unit {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -19,4 +21,9 @@ class TestCase extends \Codeception\Test\Unit {
|
|||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function tearDown() {
|
||||||
|
parent::tearDown();
|
||||||
|
Mockery::close();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
18
tests/codeception/common/unit/emails/EmailHelperTest.php
Normal file
18
tests/codeception/common/unit/emails/EmailHelperTest.php
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<?php
|
||||||
|
namespace tests\codeception\common\unit\emails;
|
||||||
|
|
||||||
|
use common\emails\EmailHelper;
|
||||||
|
use common\models\Account;
|
||||||
|
use tests\codeception\common\unit\TestCase;
|
||||||
|
|
||||||
|
class EmailHelperTest extends TestCase {
|
||||||
|
|
||||||
|
public function testBuildTo() {
|
||||||
|
/** @var Account|\Mockery\MockInterface $account */
|
||||||
|
$account = mock(Account::class)->makePartial();
|
||||||
|
$account->username = 'mock-username';
|
||||||
|
$account->email = 'mock@ely.by';
|
||||||
|
$this->assertEquals(['mock@ely.by' => 'mock-username'], EmailHelper::buildTo($account));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
47
tests/codeception/common/unit/emails/TemplateTest.php
Normal file
47
tests/codeception/common/unit/emails/TemplateTest.php
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
<?php
|
||||||
|
namespace tests\codeception\common\unit\emails;
|
||||||
|
|
||||||
|
use common\emails\Template;
|
||||||
|
use tests\codeception\common\_support\ProtectedCaller;
|
||||||
|
use tests\codeception\common\unit\TestCase;
|
||||||
|
use Yii;
|
||||||
|
use yii\mail\MailerInterface;
|
||||||
|
use yii\mail\MessageInterface;
|
||||||
|
|
||||||
|
class TemplateTest extends TestCase {
|
||||||
|
use ProtectedCaller;
|
||||||
|
|
||||||
|
public function testConstructor() {
|
||||||
|
/** @var Template|\Mockery\MockInterface $template */
|
||||||
|
$template = mock(Template::class, ['find-me'])->makePartial();
|
||||||
|
$this->assertEquals('find-me', $template->getTo());
|
||||||
|
$this->assertInstanceOf(MailerInterface::class, $template->getMailer());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testGetFrom() {
|
||||||
|
Yii::$app->params['fromEmail'] = 'find-me';
|
||||||
|
/** @var Template|\Mockery\MockInterface $template */
|
||||||
|
$template = mock(Template::class)->makePartial();
|
||||||
|
$this->assertEquals(['find-me' => 'Ely.by Accounts'], $template->getFrom());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testGetParams() {
|
||||||
|
/** @var Template|\Mockery\MockInterface $template */
|
||||||
|
$template = mock(Template::class)->makePartial();
|
||||||
|
$this->assertEquals([], $template->getParams());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testCreateMessage() {
|
||||||
|
Yii::$app->params['fromEmail'] = 'from@ely.by';
|
||||||
|
/** @var Template|\Mockery\MockInterface $template */
|
||||||
|
$template = mock(Template::class, [['to@ely.by' => 'To']])->makePartial();
|
||||||
|
$template->shouldReceive('getSubject')->andReturn('mock-subject');
|
||||||
|
/** @var MessageInterface $message */
|
||||||
|
$message = $this->callProtected($template, 'createMessage');
|
||||||
|
$this->assertInstanceOf(MessageInterface::class, $message);
|
||||||
|
$this->assertEquals(['to@ely.by' => 'To'], $message->getTo());
|
||||||
|
$this->assertEquals(['from@ely.by' => 'Ely.by Accounts'], $message->getFrom());
|
||||||
|
$this->assertEquals('mock-subject', $message->getSubject());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,49 @@
|
|||||||
|
<?php
|
||||||
|
namespace tests\codeception\common\unit\emails;
|
||||||
|
|
||||||
|
use common\components\EmailRenderer;
|
||||||
|
use common\emails\TemplateWithRenderer;
|
||||||
|
use Ely\Email\TemplateBuilder;
|
||||||
|
use tests\codeception\common\_support\ProtectedCaller;
|
||||||
|
use tests\codeception\common\unit\TestCase;
|
||||||
|
use yii\mail\MailerInterface;
|
||||||
|
use yii\mail\MessageInterface;
|
||||||
|
|
||||||
|
class TemplateWithRendererTest extends TestCase {
|
||||||
|
use ProtectedCaller;
|
||||||
|
|
||||||
|
public function testConstructor() {
|
||||||
|
/** @var TemplateWithRenderer|\Mockery\MockInterface $template */
|
||||||
|
$template = mock(TemplateWithRenderer::class, ['mock-to', 'mock-locale'])->makePartial();
|
||||||
|
$this->assertEquals('mock-to', $template->getTo());
|
||||||
|
$this->assertEquals('mock-locale', $template->getLocale());
|
||||||
|
$this->assertInstanceOf(MailerInterface::class, $template->getMailer());
|
||||||
|
$this->assertInstanceOf(EmailRenderer::class, $template->getEmailRenderer());
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testCreateMessage() {
|
||||||
|
/** @var TemplateBuilder|\Mockery\MockInterface $templateBuilder */
|
||||||
|
$templateBuilder = mock(TemplateBuilder::class)->makePartial();
|
||||||
|
$templateBuilder->shouldReceive('render')->andReturn('mock-html');
|
||||||
|
|
||||||
|
/** @var EmailRenderer|\Mockery\MockInterface $renderer */
|
||||||
|
$renderer = mock(EmailRenderer::class)->makePartial();
|
||||||
|
$renderer->shouldReceive('getTemplate')->with('mock-template')->andReturn($templateBuilder);
|
||||||
|
|
||||||
|
/** @var TemplateWithRenderer|\Mockery\MockInterface $template */
|
||||||
|
$template = mock(TemplateWithRenderer::class, [['to@ely.by' => 'To'], 'mock-locale']);
|
||||||
|
$template->makePartial();
|
||||||
|
$template->shouldReceive('getEmailRenderer')->andReturn($renderer);
|
||||||
|
$template->shouldReceive('getFrom')->andReturn(['from@ely.by' => 'From']);
|
||||||
|
$template->shouldReceive('getSubject')->andReturn('mock-subject');
|
||||||
|
$template->shouldReceive('getTemplateName')->andReturn('mock-template');
|
||||||
|
/** @var \yii\swiftmailer\Message $message */
|
||||||
|
$message = $this->callProtected($template, 'createMessage');
|
||||||
|
$this->assertInstanceOf(MessageInterface::class, $message);
|
||||||
|
$this->assertEquals(['to@ely.by' => 'To'], $message->getTo());
|
||||||
|
$this->assertEquals(['from@ely.by' => 'From'], $message->getFrom());
|
||||||
|
$this->assertEquals('mock-subject', $message->getSubject());
|
||||||
|
$this->assertEquals('mock-html', $message->getSwiftMessage()->getBody());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -3,6 +3,7 @@ modules:
|
|||||||
enabled:
|
enabled:
|
||||||
- Yii2:
|
- Yii2:
|
||||||
part: [orm, email, fixtures]
|
part: [orm, email, fixtures]
|
||||||
|
- tests\codeception\common\_support\Mockery
|
||||||
config:
|
config:
|
||||||
Yii2:
|
Yii2:
|
||||||
configFile: '../config/console/unit.php'
|
configFile: '../config/console/unit.php'
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
namespace tests\codeception\console\unit;
|
namespace tests\codeception\console\unit;
|
||||||
|
|
||||||
use Codeception\Test\Unit;
|
use Codeception\Test\Unit;
|
||||||
|
use Mockery;
|
||||||
|
|
||||||
class TestCase extends Unit {
|
class TestCase extends Unit {
|
||||||
|
|
||||||
@ -21,4 +22,9 @@ class TestCase extends Unit {
|
|||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function tearDown() {
|
||||||
|
parent::tearDown();
|
||||||
|
Mockery::close();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user