Пример #1
0
 /**
  * Add the given types to this type
  *
  * @return null
  */
 public function addUnionType(UnionType $union_type)
 {
     foreach ($union_type->getTypeList() as $i => $type) {
         $this->addType($type);
     }
 }