type = $type; $this->name = $name; } /** * Returns the type of the entity being loaded. * * @return string */ public function getType() { return $this->type; } /** * Returns the name of the entity being loaded. * * @return string */ public function getName() { return $this->name; } }