//'" ); } $this->key = $key; $this->path = $path; $this->area = $keyParts[0]; $this->vendor = $keyParts[1]; $this->name = $keyParts[2]; } /** * Get area * * @return string */ public function getArea() { return $this->area; } /** * Get vendor name * * @return string */ public function getVendor() { return $this->vendor; } /** * Get theme name * * @return string */ public function getName() { return $this->name; } /** * Get path key * * @return string */ public function getKey() { return $this->key; } /** * Get full path * * @return string */ public function getPath() { return $this->path; } }