Completed
Push — master ( 7d5fc8...3fda6b )
by WEBEWEB
08:27
created

AbstractTypographyTwigExtension::h()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 16
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 16
c 0
b 0
f 0
rs 9.4285
cc 2
eloc 6
nc 2
nop 3
1
<?php
2
3
/**
4
 * This file is part of the adminbsb-material-design-bundle package.
5
 *
6
 * (c) 2017 WEBEWEB
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 WBW\Bundle\AdminBSBMaterialDesignBundle\Twig\Extension\Typography;
13
14
use WBW\Bundle\AdminBSBMaterialDesignBundle\Twig\Extension\AbstractABSBMDTwigExtension;
15
16
/**
17
 * Abstract typography Twig extension.
18
 *
19
 * @author webeweb <https://github.com/webeweb/>
20
 * @package WBW\Bundle\AdminBSBMaterialDesignBundle\Twig\Extension\Typography
21
 * @abstract
22
 */
23
abstract class AbstractTypographyTwigExtension extends AbstractABSBMDTwigExtension {
24
25
    /**
26
     * Constructor.
27
     */
28
    final public function __construct() {
29
        parent::__construct();
30
    }
31
32
}
33