/**
  * {@inheritDoc}
  */
 public function setRefTypeSegment($refTypeSegment)
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRefTypeSegment', array($refTypeSegment));
     return parent::setRefTypeSegment($refTypeSegment);
 }
Example #2
0
 public function addClient(Client $client)
 {
     $this->clients[] = $client;
     $client->setRefTypeSegment($this);
     return $this;
 }