getMasterList() публичный Метод

Gets a list of all the master fields in this criteria set
public getMasterList ( ) : string
Результат string
 public function onBeforeRender($field)
 {
     if (!$this->validationLogicCriteria) {
         return;
     }
     $masters = array_unique($this->validationLogicCriteria->getMasterList());
     if (count($masters)) {
         $this->owner->setAttribute('data-validation-logic-masters', implode(',', $masters));
         $this->owner->setAttribute('data-validation-logic-eval', $this->validationLogicCriteria->toScript());
     }
 }