public function getActors()
 {
     if (!isset($this->actors)) {
         foreach (QubitActor::getOnlyActors() as $item) {
             $this->actors[$item->__toString()] = $item;
         }
     }
     return $this->actors;
 }