Пример #1
0
 public final function __construct($contractorInstance)
 {
     parent::__construct();
     $this->type = Event\TYPE_UNICAST_SINGLE_DIRECTIONAL_REVERSE;
     $this->resultType = Event\RESULT_TYPE_SINGLE;
     $this->contractorInstance = $contractorInstance;
 }
Пример #2
0
 public final function __construct($targetClassName, $depsArray)
 {
     parent::__construct();
     $this->type = Event\TYPE_BROADCAST_LEVEL_ORDER;
     $this->targetClass = $targetClassName;
     $this->dependencies = $depsArray;
 }
Пример #3
0
 public final function __construct($serviceInstance)
 {
     parent::__construct();
     $this->type = Event\TYPE_BROADCAST_LEVEL_ORDER;
     $this->resultType = Event\RESULT_TYPE_SINGLE_CLOSURE;
     $this->serviceInstance = $serviceInstance;
 }
Пример #4
0
 public final function __construct($word)
 {
     parent::__construct();
     $this->notifWord = $word;
     $this->type = Event\TYPE_BROADCAST_POST_ORDER;
 }
Пример #5
0
 public function __construct()
 {
     parent::__construct();
     $this->type = Event\TYPE_BROADCAST_POST_ORDER;
 }
Пример #6
0
 public function __construct()
 {
     parent::__construct();
     $this->type = Event\TYPE_UNICAST_SINGLE_DIRECTIONAL_REVERSE;
     $this->httpResponse = new Response();
 }
Пример #7
0
 public final function __construct($newInstance)
 {
     parent::__construct();
     $this->type = Event\TYPE_BROADCAST_LEVEL_ORDER;
     $this->instance = $newInstance;
 }
Пример #8
0
 public final function __construct($newInstance)
 {
     parent::__construct();
     $this->type = Event\TYPE_UNICAST_BIDIRECTIONAL;
     $this->instance = $newInstance;
 }
 /**
  * @api
  */
 public function __construct()
 {
     parent::__construct();
     $this->type = Event\TYPE_UNICAST_SINGLE_DIRECTIONAL;
 }