Ejemplo n.º 1
0
 /**
  * @param string $subject
  * @param string $property
  * @param string $lang
  * @return array
  */
 public function resolvePropertyValue($subject, $property, $lang)
 {
     $itemIds = $this->apiInteractor->searchEntities($subject, 'item', $lang);
     $propertyIds = $this->apiInteractor->searchEntities($property, 'property', $lang);
     $items = $this->apiInteractor->getItems($itemIds);
     return $this->getResult($items, $propertyIds, $lang);
 }