Browse Source

It is more obviouse what to pass in trigger() method

tags/2.0.0-beta
egorpromo 11 years ago
parent
commit
4d720389c3
  1. 2
      framework/yii/base/Component.php

2
framework/yii/base/Component.php

@ -436,7 +436,7 @@ class Component extends Object
* @param string $name the event name
* @param Event $event the event parameter. If not set, a default [[Event]] object will be created.
*/
public function trigger($name, $event = null)
public function trigger($name, Event $event = null)
{
$this->ensureBehaviors();
if (!empty($this->_events[$name])) {

Loading…
Cancel
Save