componentType = $componentType; $this->componentName = $componentName; $this->path = $fullPath; } /** * Get component type * * @return string */ public function getComponentType() { return $this->componentType; } /** * Get component name * * @return string */ public function getComponentName() { return $this->componentName; } /** * Get full path to the component * * @return string */ public function getFullPath() { return $this->path; } }