class-otgs-php-template-service-loader.php
420 Bytes
<?php
class OTGS_Php_Template_Service_Loader implements OTGS_Template_Service_Loader {
/**
* @var string
*/
private $template_dir;
/**
* @param string $template_dir
*/
public function __construct( $template_dir ) {
$this->template_dir = $template_dir;
}
/**
* @return OTGS_Php_Template_Service
*/
public function get_service() {
return new OTGS_Php_Template_Service( $this->template_dir );
}
}