Still this particular "base" class needs cleanup in things of position of
methods: first private, then protected then public and always keep setter
and getter close to each other and at top position (right after contructor).
All existing factory methods always lead setters and getters (right after
constructor).
Signed-off-by: Roland Häder <roland@mxchange.org>
$this->templateType = (string) $templateType;
}
+ /**
+ * Getter for template type
+ *
+ * @return $templateType The current template's type
+ */
+ public final function getTemplateType () {
+ return $this->templateType;
+ }
+
/**
* Setter for the last loaded template's FQFN
*
$this->compileOutputPath = (string) $compileOutputPath;
}
- /**
- * Getter for template type
- *
- * @return $templateType The current template's type
- */
- public final function getTemplateType () {
- return $this->templateType;
- }
-
/**
* Unsets the given offset in the variable group
*