ResetPasswordNotification::getSubject()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace yrc\jobs\notifications\email;
4
5
use Yii;
6
use yrc\jobs\notifications\email\AbstractEmailNotification;
7
8
class ResetPasswordNotification extends AbstractEmailNotification
9
{
10
    protected function getSubject()
11
    {
12
        return Yii::t('yrc', 'Reset Your Password');
13
    }
14
15
    protected $viewFile = 'ResetPassword.twig';
16
}
17