set($fileExtension); } /** * Set the template file extension. * @param null|string $fileExtension * @return FileExtension */ public function set($fileExtension) { $this->fileExtension = $fileExtension; return $this; } /** * Get the template file extension. * @return string */ public function get() { return $this->fileExtension; } }