Text
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 3
c 2
b 0
f 0
dl 0
loc 5
wmc 0
ccs 0
cts 0
cp 0
1
<?php
2
3
/**
4
 * This file is part of template
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
declare(strict_types=1);
11
12
namespace Slick\Template\Extension;
13
14
use Slick\Template\EngineExtensionInterface;
15
use Slick\Template\Extension\Twig\TwigTextExtension;
16
17
/**
18
 * Text
19
 *
20
 * @package Slick\Template\Extension
21
 */
22
final class Text implements EngineExtensionInterface
23
{
24
    use TwigEngineMethods;
25
26
    protected string $twigExtensionName = TwigTextExtension::class;
27
}
28