| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace ThurData\Servers\KerioEmail\Core\Traits;
- trait Template
- {
- protected $templateName = null;
- protected $templateDir = null;
- /**
- * @return string|null
- */
- public function getTemplateDir()
- {
- return $this->templateDir;
- }
- /**
- * @return string|null
- */
- public function getTemplateName()
- {
- return $this->templateName;
- }
- public function setTemplateName($templateName)
- {
- $this->templateName = $templateName;
- return $this;
- }
- public function setTemplateDir($templateDir)
- {
- $this->templateDir= $templateDir;
- return $this;
- }
- }
|