Completed
Push — master ( 5b5fb7...389443 )
by Tobias
02:54
created

DummyTwigVisitor

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 3
ccs 0
cts 0
cp 0
1
<?php
2
3
/*
4
 * This file is part of the PHP Translation package.
5
 *
6
 * (c) PHP Translation team <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Translation\Bundle\Twig;
13
14
/**
15
 * This dummy extractor is used to be compatible with both Twig1 and Twig2. It is only used in dependency injection
16
 * container.
17
 *
18
 * @author Tobias Nyholm <[email protected]>
19
 */
20
class DummyTwigVisitor
21
{
22
}
23