Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
40 | 5 | public function __construct($from, $to, $subject, $view, array $params, MailerInterface $mailer) |
|
41 | { |
||
42 | 5 | $this->from = $from; |
|
43 | 5 | $this->to = $to; |
|
44 | 5 | $this->subject = $subject; |
|
45 | 5 | $this->view = $view; |
|
46 | 5 | $this->params = $params; |
|
47 | 5 | $this->mailer = $mailer; |
|
48 | 5 | $this->mailer->setViewPath($this->viewPath); |
|
49 | 5 | $this->mailer->getView()->theme = Yii::$app->view->theme; |
|
50 | 5 | } |
|
51 | |||
78 |