Exemplo n.º 1
0
 /**
  * Process constructor.
  *
  * @param string              $processName
  * @param ConnectionInterface $connection
  */
 public function __construct($processName, ConnectionInterface $connection)
 {
     $this->_processName = $processName;
     parent::__construct($connection);
 }
Exemplo n.º 2
0
 /**
  * Group constructor.
  *
  * @param string              $groupName
  * @param ConnectionInterface $connection
  * @param array               $config
  */
 public function __construct($groupName, ConnectionInterface $connection, $config = [])
 {
     $this->_groupName = $groupName;
     parent::__construct($connection, $config);
 }