19 lines
328 B
PHP
19 lines
328 B
PHP
<?php
|
|
|
|
namespace Leantime\Core\UI;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class TemplateServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->singleton(Template::class, Template::class);
|
|
}
|
|
}
|