Example #1
0
 /**
  * Add mapper source type.
  *
  * @param SourceTypeInterface $type
  * @param string $alias
  *
  * @throws SourceTypeException
  */
 public function add(SourceTypeInterface $type, $alias)
 {
     if ($alias !== $type->getName()) {
         throw new SourceTypeException(sprintf('Mapper source type %s alias is not valid!', $alias));
     }
     $this->types[$alias] = $type;
 }
Example #2
0
 /**
  * Get mapper source type name.
  *
  * @return string
  */
 public function getTypeName()
 {
     return $this->type->getName();
 }