Lines 100.00% 2 / 2
Methods 100.00% 1 / 1
Classes 100.00% 1 / 1
Name Lines Methods CRAP
 getTemplatePath 100.00% 2 / 2 100.00% 1 / 1 2
8class TemplateFinder
9{
10    /**
11     * @todo check against ISO definition
12     */
13    public static function getTemplatePath(): string
14    {
15        $templatePath = realpath(__DIR__);
16        return ($templatePath !== false ? $templatePath : __DIR__) . '/../../../templates';
17    }
18}