Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
18 | class MailController extends Controller |
||
19 | { |
||
20 | public $defaultAction = 'flush'; |
||
21 | /** |
||
22 | * @var Mailer|array|string the mailer object or the application component ID of the mailer object. |
||
23 | */ |
||
24 | public $mailer = 'mailer'; |
||
25 | |||
26 | /** |
||
27 | * @inheritdoc |
||
28 | */ |
||
29 | 1 | public function init() |
|
33 | 1 | } |
|
34 | |||
35 | /** |
||
36 | * Sends messages. |
||
37 | */ |
||
38 | 1 | public function actionFlush() |
|
43 |