Smarty_Internal_Compile_Parent
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 15
wmc 0
1
<?php
2
/**
3
 * This file is part of Smarty.
4
 *
5
 * (c) 2015 Uwe Tews
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
/**
12
 * Smarty Internal Plugin Compile Parent Class
13
 *
14
 * @author Uwe Tews <[email protected]>
15
 */
16
class Smarty_Internal_Compile_Parent extends Smarty_Internal_Compile_Child
17
{
18
    /**
19
     * Tag name
20
     *
21
     * @var string
22
     */
23
    public $tag = 'parent';
24
25
    /**
26
     * Block type
27
     *
28
     * @var string
29
     */
30
    public $blockType = 'Parent';
31
}
32