Ejemplo n.º 1
0
 /**
  * @return Container
  */
 public function getWorkers()
 {
     if (null === $this->workers) {
         $this->workers = new WorkersContainer();
         // $this->workers["operator"] = $this;
         $this->workers->setOperator($this);
     }
     return $this->workers;
 }