Ejemplo n.º 1
0
 public function setLimitedPropertiesList($list)
 {
     if ($list !== null) {
         Assert::isArray($list);
     }
     $mapping = $this->proto->getFullFormMapping();
     foreach ($list as $key => $inner) {
         Assert::isIndexExists($mapping, $key);
     }
     $this->limitedPropertiesList = $list;
     return $this;
 }