Test Setup Failed
Push — master ( 35949f...28f4e3 )
by Sebastian
03:25
created

ChooseElse::render()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 5

Duplication

Lines 9
Ratio 100 %

Importance

Changes 0
Metric Value
dl 9
loc 9
rs 9.6666
c 0
b 0
f 0
cc 2
eloc 5
nc 2
nop 2
1
<?php
2
/**
3
 * citeproc-php
4
 *
5
 * @link        http://github.com/seboettg/citeproc-php for the source repository
6
 * @copyright   Copyright (c) 2016 Sebastian Böttger.
7
 * @license     https://opensource.org/licenses/MIT
8
 */
9
10
namespace Seboettg\CiteProc\Rendering\Choose;
11
use Seboettg\CiteProc\Rendering\RenderingInterface;
12
13
14
/**
15
 * Class ChooseElse
16
 * @package Seboettg\CiteProc\Node\Choose
17
 *
18
 * @author Sebastian Böttger <[email protected]>
19
 */
20
class ChooseElse extends ChooseIf implements RenderingInterface
21
{
22
    //render function is inherited from ChooseIf
23
}