Completed
Pull Request — master (#214)
by Claus
03:52
created

ThenViewHelper::render()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
namespace TYPO3Fluid\Fluid\ViewHelpers;
3
4
/*
5
 * This file belongs to the package "TYPO3 Fluid".
6
 * See LICENSE.txt that was shipped with this package.
7
 */
8
9
use TYPO3Fluid\Fluid\Core\Compiler\TemplateCompiler;
10
use TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\ViewHelperNode;
11
use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper;
12
use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileEmpty;
13
use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\PassthroughRenderChildren;
14
15
/**
16
 * "THEN" -> only has an effect inside of "IF". See If-ViewHelper for documentation.
17
 *
18
 * @see \TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper
19
 * @api
20
 */
21
class ThenViewHelper extends AbstractViewHelper
22
{
23
    use CompileEmpty;
24
    use PassthroughRenderChildren;
25
26
    /**
27
     * @var boolean
28
     */
29
    protected $escapeOutput = false;
30
}
31