/**
  * Constructor.
  *
  * @param TemplateImplementation $templateImplementation
  * @param string $path
  * @param array $partialTypoScriptTree
  */
 public function __construct(TemplateImplementation $templateImplementation, $path, array $partialTypoScriptTree)
 {
     $this->templateImplementation = $templateImplementation;
     $this->fusionRuntime = $templateImplementation->getTsRuntime();
     $this->path = $path;
     $this->partialTypoScriptTree = $partialTypoScriptTree;
 }