Commit 59535d38 by Mark

doc fix

parent 791d8124
...@@ -31,12 +31,12 @@ abstract class BaseMailer extends Component implements MailerInterface, ViewCont ...@@ -31,12 +31,12 @@ abstract class BaseMailer extends Component implements MailerInterface, ViewCont
{ {
/** /**
* @event ActionEvent an event raised right before executing a controller action. * @event \yii\base\MailEvent an event raised right before send.
* You may set [[ActionEvent::isValid]] to be false to cancel the action execution. * You may set [[\yii\base\MailEvent::isValid]] to be false to cancel the send.
*/ */
const EVENT_BEFORE_SEND = 'beforeSend'; const EVENT_BEFORE_SEND = 'beforeSend';
/** /**
* @event ActionEvent an event raised right after executing a controller action. * @event \yii\base\MailEvent an event raised right after send.
*/ */
const EVENT_AFTER_SEND = 'afterSend'; const EVENT_AFTER_SEND = 'afterSend';
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment