Exemplo n.º 1
0
 function __construct($onWhat)
 {
     parent::__construct($onWhat);
     $params = func_get_args();
     array_shift($params);
     $this->params = $params;
 }
Exemplo n.º 2
0
 function __construct($onWhat, $content)
 {
     parent::__construct($onWhat);
     $this->content = $content;
 }
Exemplo n.º 3
0
 function __construct($login)
 {
     parent::__construct(static::ON_ALLIES_CHANGED);
     $this->login = $login;
 }
Exemplo n.º 4
0
 function __construct($onWhat, $threadId)
 {
     parent::__construct($onWhat);
     $this->threadId = $threadId;
 }
Exemplo n.º 5
0
 function __construct($method, $params = array())
 {
     parent::__construct(self::getOnWhat($method));
     $this->params = $params;
 }
Exemplo n.º 6
0
 function __construct($onWhat = self::ON_TICK)
 {
     parent::__construct($onWhat);
 }
Exemplo n.º 7
0
 function __construct($onWhat, $pluginId)
 {
     parent::__construct($onWhat);
     $this->pluginId = $pluginId;
 }
Exemplo n.º 8
0
 function __construct($onWhat, $newValue)
 {
     parent::__construct($onWhat);
     $this->newValue = $newValue;
 }