Files
Leantime/app/Domain/Help/Controllers/Support.php

28 lines
460 B
PHP

<?php
namespace Leantime\Domain\Help\Controllers;
use Leantime\Core\Controller\Controller;
use Leantime\Domain\Help\Services\Helper;
class Support extends Controller
{
protected Helper $helpService;
public function init(Helper $helpService)
{
$this->helpService = $helpService;
}
/**
* get - handle get requests
*/
public function get($params)
{
return $this->tpl->display('help.support');
}
}